代码搜索:kill
找到约 2,615 项符合「kill」的源代码
代码结果 2,615
www.eeworm.com/read/147331/5730891
c kill.c
#include
#include
#include
#include "sys/syscall.h"
#include
int errno;
int __trap0 (int function, int p1, int p2, int p3);
#define TRAP0(f, p1, p2, p
www.eeworm.com/read/147331/5730926
c kill.c
#include
#include
#include
#include "sys/syscall.h"
int errno;
int __trap0 ();
#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3))
_kill (n, m)
{
retur
www.eeworm.com/read/147331/5730971
c kill.c
/* Stub for kill. */
#include
#include
/* The pid argument should be of type pid_t. */
int
_DEFUN (_kill, (pid, sig),
int pid _AND
int sig)
{
if (pid == 1 || pid < 0)
www.eeworm.com/read/147331/5731966
c kill.c
/* kill for MMIXware.
Copyright (C) 2001 Hans-Peter Nilsson
Permission to use, copy, modify, and distribute this software is
freely granted, provided that the above copyright notice, this n
www.eeworm.com/read/145991/5741623
s kill.s
/ int kill ( int pid, int signal )
.globl _kill
_kill:
movl 4(%esp), %edx
movl 8(%esp), %ecx
movw $0x7f0d, %ax
int $0x21
jecxz 1f
movl %ecx, _errno
1:
ret
www.eeworm.com/read/144212/5752830
c kill.c
/* kill.c -- kill ring management. */
/* Copyright (C) 1994 Free Software Foundation, Inc.
This file is part of the GNU Readline Library, a library for
reading lines of text with interact
www.eeworm.com/read/136812/5857372
s _kill.s
/* @(#)_kill.s 1.1 92/07/30 SMI; from UCB 4.1 82/12/04 */
#include "SYS.h"
BSDSYSCALL(kill)
RET
www.eeworm.com/read/136812/5857386
c kill.c
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)kill.c 1.1 92/07/30 SMI";
#endif
/*
kill -- system call emulation for 4.2BSD
last edit: 02-Jan-1985 D A Gwyn
*/
#include
www.eeworm.com/read/136812/5857397
s _kill.s
/* @(#)_kill.s 1.1 92/07/30 SMI; from UCB 4.1 82/12/04 */
#include "SYS.h"
BSDSYSCALL(kill)
RET
www.eeworm.com/read/136072/5874371
c kill.c
/* vi: set sw=4 ts=4: */
/*
* kill() for uClibc
*
* Copyright (C) 2000-2004 by Erik Andersen
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#includ