代码搜索:waitpid

找到约 797 项符合「waitpid」的源代码

代码结果 797
www.eeworm.com/read/290808/3970703

c sigchldwaitpid.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) { printf("child %d terminated\n", pid); } return; }
www.eeworm.com/read/290808/3970894

c sigchldwaitpid.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) { printf("child %d terminated\n", pid); } return; }
www.eeworm.com/read/290808/3971248

c sigchldwaitpid.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) printf("child %d terminated\n", pid); return; }
www.eeworm.com/read/290808/3971311

c sigchldwaitpid.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) { printf("child %d terminated\n", pid); } return; }
www.eeworm.com/read/290808/3971345

c sigchldwaitpid.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) printf("child %d terminated\n", pid); return; }
www.eeworm.com/read/400494/2351325

h waitflags.h

/* Definitions of flag bits for `waitpid' et al. Copyright (C) 1993 Free Software Foundation, Inc. Contributed by Brendan Kehoe (brendan@zen.org). The GNU C Library is free software; you can re
www.eeworm.com/read/362989/2925190

h waitflags.h

/* Definitions of flag bits for `waitpid' et al. Copyright (C) 1992, 1996, 1997, 2000, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free s
www.eeworm.com/read/470917/1441240

h waitflags.h

/* Definitions of flag bits for `waitpid' et al. Copyright (C) 1992,1996,1997,2000,2004,2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free
www.eeworm.com/read/240503/4573386

h wait.h

#ifndef _SYS_WAIT_H #define _SYS_WAIT_H #include /* Bits in the third argument to `waitpid'. */ #define WNOHANG 1 /* Don't block waiting. */ #define WUNTRACED 2 /* Report status of
www.eeworm.com/read/237551/4625391

h waitflags.h

/* Definitions of flag bits for `waitpid' et al. Copyright (C) 1992,1996,1997,2000,2004,2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free