父进程获取子进程退出状态(2)

本文介绍了一个使用C++实现的父子进程通信案例。父进程通过fork创建子进程,并使用wait和status来等待并获取子进程的状态信息。子进程则执行另一个程序并通过getppid和getpid获取自身及父进程的ID。

main.cpp:

#include <unistd.h> #include <iostream> #include <sys/wait.h> #include <stdlib.h> using namespace std; int main() { int ret; ret = fork(); if (ret > 0) { cout << "parent start/n"; int status; pid_t pid; pid = wait(&status); if (pid != ret) { cout << "parent wait error(wait return pid:" << pid << ", fork return pid:" << ret << ")/n"; exit(1); } else { cout << "parent wait return(pid:" << pid << ")/n"; } cout << "parent's child end - pid:"<< pid << ", status:" << status << endl; if (WIFEXITED(status)) { cout << ">> child exited, exit code=" << WEXITSTATUS(status) << endl; if (WEXITSTATUS(status) == 1) { cout << ">> child exec error/n"; } } else if (WIFSIGNALED(status)) { cout << ">> child killed (signal " << WTERMSIG(status) << ")/n"; #ifdef WCOREDUMP } else if (WCOREDUMP(status)) { cout << ">> child core file generated/n"; #endif } else if (WIFSTOPPED(status)) { cout << ">> child stopped (signal " << WSTOPSIG(status) << ")/n"; #ifdef WIFCONTINUED } else if (WIFCONTINUED(status)) { cout << ">> child continued/n"; #endif } else { cout << ">> Unexpected status (" << status << ")/n"; } } else if (ret == 0) { pid_t ppid = getppid(); cout << "child start/n"; cout << "child ppid:" << ppid << endl; cout << "child pid:" << getpid() << endl; cout << "child exec/n"; if (execl ("./child", "child", (char *)0) < 0) { cout << "child exec error/n"; exit(1); } } else { cout << "fork error/n"; } return 0; }

child.cpp:(g++ child.cpp -o child)

#include <unistd.h> #include <iostream> using namespace std; int main() { cout << "child exec start/n"; cout << "child exec ppid:" << getppid() << endl; cout << "child exec pid:" << getpid() << endl; sleep(30); return 0; }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值