编程:用fork()创建一子进程,子进程求前10个自然数的和并打印,系统调用wait()让父进程等待子进程结束。
展开全部
#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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询