编程:用fork()创建一子进程,子进程求前10个自然数的和并打印,系统调用wait()让父进程等待子进程结束。

 我来答
有你的晴天12138
2014-04-10 · TA获得超过1001个赞
知道小有建树答主
回答量:305
采纳率:80%
帮助的人:206万
展开全部
#include <iostream>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
using namespace std;

// 子进程的入口函数
void SubMain()
{
cout << "Hello, this is the child process" << endl;

// 可以在这里实现任何操作,为了方便,使用延时代替
sleep(1);
}

int main()
{
pid_t pid = fork();
if (pid == 0)
{
// 子进程,调用其入口函数
SubMain();

// 子进程从此处结束
exit(0);
}
else if (pid > 0)
{
// 此处是父进程
int status;
pid_t tmpPid = wait(&status);
if (tmpPid == pid)
{
cout << "父进程通过 wait 函数知道子进程已经结束" << endl;
}
}

return 0;
}

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式