wait&waitpid区别:
wait使调用者阻塞,waitpid有一个选项,可以使调用者不阻塞。
#include <sys/types.h>
#include <sys/wait.h>
pid_t wait(int *status);
pid_t waitpid(pid_t pid, int *status, int options);
对于waitpid函数中pid参数作用解释如下:
pid=-1 等待任一子进程,&wait等效
pid>0 等待其进程ID与pid相等的子进程
pid==0 等待其组ID等于调用进程组ID的任一子进程
pid<-1 等待其组ID等于pid绝对值的任一子进程
wait的options常量
WCONTINUED 若实现支持作业控制,那么由pid指定的任一子进程在暂停后已经继续,但其状态尚未报告,则返回其状态
WNOHANG 若由pid指定的紫荆城并不是立即可用的,则waitpid不阻塞,此时其返回值为0
WUNTRACED 若某实现支持作业控制,而pid指定的任一子进程已处于暂停状态,并且其状态自暂停以来还未报告过,则返回其状态
代码演示:
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
pid_t pid;
int cnt=0;
int status=10;
pid=fork();
if(pid>0){
// wait(&status);
waitpid(pid,&status,WNOHANG);
printf("child quit,child status=%d\n",WEXITSTATUS(status));
while(1){
printf("cnt=%d\n",cnt);
printf("this is father print%d\n",getpid());
sleep(1);
}
}
if(pid==0){
while(1){
printf("this is child print,pid=%d\n",getpid());
sleep(1);
cnt++;
if(cnt==3){
//break;
//exit(0);
//_exit(0);
exit(3);
}
}
}
return 0;
}
编译运行结果:子进程、父进程同时运行3次,子进程退出,父进程运行
child quit,child status=0
cnt=0
this is father print24369
this is child print,pid=24370
cnt=0
this is child print,pid=24370
this is father print24369
cnt=0
this is father print24369
this is child print,pid=24370
cnt=0
this is father print24369
cnt=0
this is father print24369
cnt=0
this is father print24369
cnt=0
this is father print24369
cnt=0
ps -aux|grep a.out 可以看出,子进程变成了z+状态
在非阻塞状态下,子进程会变成僵尸进程