linux——父进程等待子进程退出2

wait和waitpid是Linux编程中用于等待子进程结束的函数,wait会使调用者阻塞,而waitpid可以设置不阻塞选项。waitpid的pid参数可以灵活指定等待的子进程,如等待任何子进程、特定PID的子进程等。当使用WNOHANG选项时,如果子进程未结束,waitpid不会阻塞,可能导致子进程成为僵尸进程。示例代码展示了waitpid的使用,其中父进程在子进程退出后继续运行。
摘要由CSDN通过智能技术生成

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+状态

在非阻塞状态下,子进程会变成僵尸进程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值