代码搜索:kill
找到约 2,615 项符合「kill」的源代码
代码结果 2,615
www.eeworm.com/read/304222/3802245
s kill.s
.sect .text
.extern __kill
.define _kill
.align 2
_kill:
jmp __kill
www.eeworm.com/read/304222/3802581
c _kill.c
#include
#define kill _kill
#include
PUBLIC int kill(proc, sig)
int proc; /* which process is to be sent the signal */
int sig; /* signal number */
{
message m;
m.m1_i1 =
www.eeworm.com/read/298657/3859917
s kill.s
.globl _kill
.globl kill
_kill:
kill:
movl $0x25, %eax
lcall $7,$0
jb _cerror
xor %eax, %eax
ret
www.eeworm.com/read/298657/3859956
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/298657/3859991
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/298657/3860033
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/298657/3860945
c kill.c
#include "config.h"
#include
#include
#include
int kill(int pid, int sig)
{
errno = ENOSYS;
return -1;
}
www.eeworm.com/read/298657/3861068
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/279968/4129003
s kill.s
.globl _kill
.globl kill
_kill:
kill:
movl $0x25, %eax
lcall $7,$0
jb _cerror
xor %eax, %eax
ret