代码搜索:waitpid
找到约 797 项符合「waitpid」的源代码
代码结果 797
www.eeworm.com/read/367182/2851533
c system.c
/* BSD 4.4 does have `waitpid'. Avoid unix/system.c, which says we don't. */
#include
www.eeworm.com/read/265772/11254355
c syscall-names.c
const char* const _syscall_names[] = {
"restart_syscall",
"exit",
"fork",
"read",
"write",
"open",
"close",
"waitpid",
"creat",
"link",
"unlink",
"execve",
"chdir",
"time",
www.eeworm.com/read/400494/2351347
c system.c
/* SVR4 does have `waitpid'. Avoid unix/system.c, which says we don't. */
#include
www.eeworm.com/read/216781/4888149
c sigchldwaitpid.c
#include "unpipc.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0)
;
return;
}
www.eeworm.com/read/198916/5080832
c sigchldwaitpid.c
#include "unpipc.h"
void
sig_chld(int signo)
{
pid_t pid;
int stat;
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0)
;
return;
}
www.eeworm.com/read/435707/1861199
h wait.h
#ifndef _SYS_WAIT_H_
#define _SYS_WAIT_H_
pid_t waitpid(pid_t, int*, int);
#endif // _SYS_WAIT_H_
www.eeworm.com/read/127438/6006085
py mpd.py
#!/usr/bin/env python
from sys import stdout, argv, settrace, exit
from os import environ, getpid, fork, execvpe, setpgrp, waitpid, kill, chdir, \
setsid, getuid, s
www.eeworm.com/read/400494/2351364
c pipestream.c
/* SCO 3.2v4 does have `waitpid'.
Avoid unix/pipestream.c, which says we don't. */
#include
www.eeworm.com/read/141295/5774066
makefile
GENWRAPS = read write recv recvfrom recvmsg send sendto sendmsg accept connect
GENWRAPSOURCE = $(GENWRAPS:=.c)
WRAPPERS=open socket pipe close select execve fork wait waitpid $(GENWRAPS)
WRAPPERSOUR
www.eeworm.com/read/124910/6038185
h waitflags.h
/* Definitions of flag bits for `waitpid' et al.
Copyright (C) 1993, 1996, 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Brendan Kehoe (bren