我欲乘风yecheng.blog.chinaunix.net
yecheng_110
全部博文(78)
2007年(53)
2006年(25)
DT27
jolinok
ylke2007
saintdra
zhxd
大鬼不动
tntcheng
chenkeac
flb_2001
yyfq521
bluesky0
zjq5688
w1818618
168Kill
myoeoo
bolebdms
sxzf168
11qq22ww
分类: C/C++
2006-10-26 14:12:54
void sig_chld(int sig) { pid_t pid; int stat; while(1) { pid = waitpid(-1, &stat, WNOHANG);//WNOHANG 非阻塞方式 if(pid == 0 || (pid == -1 && errno != EINTR) ) { break; } } return; }
void sig_chld(int sig) { pid_t pid; int stat; while(1) { pid = waitpid(-1, &stat, WNOHANG);//
方式 if(pid == 0 || (pid == -1 && errno != EINTR) ) { break; } } return; }
上一篇:fork两次避免产生僵尸进程[c/c++]
下一篇:后台执行CGI的问题[perl]
登录 注册