代码搜索:kill
找到约 2,615 项符合「kill」的源代码
代码结果 2,615
www.eeworm.com/read/315939/13534062
c kill.c
#include
#include
#include
#include
#include
int main()
{
pid_t pid;
int ret;
if((pid=fork())
www.eeworm.com/read/308682/13696265
c kill.c
#include
#include
#include
#include
#include
int main()
{
pid_t pid;
int ret;
if((pid=fork())
www.eeworm.com/read/306457/13744754
c kill.c
#include
#include
#include
#include
#include
#include
#include
int sys_pause(void);
int sys_close(int
www.eeworm.com/read/300969/13874916
s kill.s
.sect .text
.extern __kill
.define _kill
.align 2
_kill:
jmp __kill
www.eeworm.com/read/300969/13875956
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;
www.eeworm.com/read/149795/5697316
c kill.c
/*
*
* $Id: kill.c,v 1.4 2004/08/24 08:58:29 janakj Exp $
*
* in this file, we implement the ability to send a kill signal to
* a child after some time; its a quick ugly hack, for example kill
*
www.eeworm.com/read/149795/5697318
h kill.h
/*
*
* $Id: kill.h,v 1.3 2004/08/24 08:58:29 janakj Exp $
*
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
* ser is free software; you can redistribu
www.eeworm.com/read/147331/5730787
s kill.s
.globl _kill
.globl kill
_kill:
kill:
movl $0x25, %eax
lcall $7,$0
jb _cerror
xor %eax, %eax
ret