以编程方式捕获父级子进程的打印,这样它们就不会进入标准输出
我有一个在 HPUX 和 Linux 上运行的 C++ 程序。我的程序创建了 2 个子进程,父进程等待两个子进程完成。当我从运行目录执行程序时,如下所示, 运行> myProgram
我从显示的子进程+父进程中获取打印内容。所以我需要阻止我的子进程打印到命令提示符窗口。子进程完成后,我想打开打印,以便父进程可以显示结果。
有谁知道如何打开和关闭打印吗?
I do have a C++ program that runs on HPUX and Linux. My program creates 2 child process, parent waits for both child process to finish. When I execute my program form run directory as follows,
run> myProgram
I get prints from both child process + parent process displayed. So I need to way to stop my child process to print onto the command prompt window. After child process are completed, I would like to turn on printing, so that parent can display the results.
Does anyone know how to turn on and turn off prints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从这个答案中汲取灵感:
Taking inspiration from this answer: