代码搜索:waitpid

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

代码结果 797
www.eeworm.com/read/395229/2446644

h waitflags.h

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

py mpdman.py

#!/usr/bin/env python from os import environ, getpid, pipe, fork, fdopen, read, write, close, dup2, \ chdir, execvpe, kill, waitpid, _exit from sys import exit from socket i
www.eeworm.com/read/486037/1255118

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/486037/1256683

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/246537/4493498

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/246537/4493640

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/246537/4493985

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/246537/4494036

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/246537/4494062

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/229562/4753958

pl callscriptdriver.pl

#! /bin/perl # Driver for CallScript. # To get WNOHANG for waitpid. use POSIX ":sys_wait_h"; # Initialize configuration. # Number of seconds to run before no longer starting any jobs. $time_limit