如何读取子进程的返回码

发布于 2024-11-03 16:48:29 字数 190 浏览 1 评论 0原文

我使用 fork 和 execv 来执行子进程。在父程序中,我有这个:

int status;
wait(&status);
cout << "return code = " << status << endl;

会等待子进程终止然后显示它的返回代码吗?

I use fork and execv to execute a child process. In the parent program, I have this:

int status;
wait(&status);
cout << "return code = " << status << endl;

Will that wait for the child process to terminate and then display it's return code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海之角 2024-11-10 16:48:29

如果想获取指定子进程的状态,您应该使用 waitpid()过程。 wait() 将返回第一个完成的子进程的状态。

You should use waitpid() if want to get status of specified child process. wait() will return status of first finished child process.

ζ澈沫 2024-11-10 16:48:29

是的,它应该来自我读到的 http://linux.die.net/man/2/wait

yes, it should from what i read http://linux.die.net/man/2/wait

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文