wait函数

39 篇文章 0 订阅 ¥9.90 ¥99.00
本文通过示例代码介绍了Linux C程序设计中wait函数的使用,展示了其在父进程等待子进程结束时的角色。同时,文章探讨了内核级别的wait系统调用实现,提到了消息队列作为实现方式,并引用了orange's操作系统书籍中的相关代码,为读者揭示wait函数返回值的含义。最后,鼓励读者深入学习系统调用机制。
摘要由CSDN通过智能技术生成

void main()
{
pid_t pid;
char message;
int n;
int exit_code;
printf(“fork program starting\n”);
pid=fork();
switch(pid)
{
case -1:
perror(“fork failed”);
exit(1);
case 0:
message=“this is the child”;
n=5;
exit_code=37;
break;
default:
message=“this is the parent”;
n=3;
exit_code=0;
break;
}
for(;n>0;n–)
{
puts(message);
sleep(1);
}
if(pid!=0)
{
int stat_val;
pid_t child_pid;
child_pid=wait(&stat_val);
printf(“child has finished:pid=%d\n”,child_pid);
printf("%d\n",stat_val);
/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

xf807989

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值