1 Star 0 Fork 0

苏千扬/linux.cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myproc.c 724 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏千扬 提交于 2023-04-21 22:41 . 进程等待代码的实现
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
int main()
{
pid_t id = fork();
if(id == 0)
{
//child
int cnt = 5;
while(cnt)
{
printf("child[%d] is running:cnt is %d\n" ,getpid(),cnt);
cnt--;
sleep(1);
}
exit(1);
}
sleep(10);
int status = 0;
pid_t ret = waitpid(id,&status,0);
if(ret > 0)
{
if(WIFEXITED(status))
{
printf("exit code : %d\n",WEXITSTATUS(status));
}
else
{
printf("father wait failed!\n");
}
}
sleep(10);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/su-qianyang/linux.cpp.git
git@gitee.com:su-qianyang/linux.cpp.git
su-qianyang
linux.cpp
linux.cpp
master

搜索帮助