代码搜索:waitpid
找到约 797 项符合「waitpid」的源代码
代码结果 797
www.eeworm.com/read/327324/13086201
c waitpid.c
/*
waitpid example
AUP2, Sec. 5.08
Copyright 2003 by Marc J. Rochkind. All rights reserved.
May be copied only for purposes and under conditions described
on the Web page www.basepath.com/aup/co
www.eeworm.com/read/321265/13409793
c waitpid.c
/*waitpid.c*/
#include
#include
#include
#include
#include
int main()
{
pid_t pc,pr;
pc=fork();
if(pc
www.eeworm.com/read/308682/13696252
c waitpid.c
/*waitpid.c*/
#include
#include
#include
#include
#include
int main()
{
pid_t pc,pr;
pc=fork();
if(pc
www.eeworm.com/read/300969/13874928
s waitpid.s
.sect .text
.extern __waitpid
.define _waitpid
.align 2
_waitpid:
jmp __waitpid
www.eeworm.com/read/300969/13875950
c _waitpid.c
#include
#define waitpid _waitpid
#include
PUBLIC pid_t waitpid(pid, status, options)
pid_t pid;
int *status;
int options;
{
message m;
m.m1_i1 = pid;
m.m1_i2
www.eeworm.com/read/147331/5730793
s waitpid.s
.globl _waitpid
.globl waitpid
_waitpid:
waitpid:
pushfl
popl %eax
orl $0x8c4,%eax
pushl %eax
popfl
movl $0x7, %eax
lcall $7,$0
jb _cerror
movl 8(%esp), %ecx
testl %ecx, %ecx
je bye
mov
www.eeworm.com/read/141295/5774072
c waitpid.c
/* Routine to handle blocking waits using conditions, signals, and
* non-blocking waits. This prevent the entire system from freezing
* when wait() is called. */
#include
#include
www.eeworm.com/read/136812/5857209
c waitpid.c
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)waitpid.c 1.1 92/07/30 Copyr 1989 Sun Micro";
#endif
#include
#include
/*
* posix meanings for pid
*