java中的SIGCHILD信号

发布于 2024-11-30 07:17:57 字数 102 浏览 0 评论 0原文

我在 java 中使用“Runtime.getRuntime().exec()”创建一个子进程,并希望检测子进程何时退出。所以我想知道 posix 中是否有像“SIGCHILD”这样的信号?

I create a child process using 'Runtime.getRuntime().exec()' in java and want to detect when child process exits. so i want to know is there any signal like 'SIGCHILD' in posix?

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

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

发布评论

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

评论(1

萌酱 2024-12-07 07:17:57

不,不完全是。您可以调用Process.waitFor()来等待进程退出。但是,如果您从专用线程中执行此操作,那么这将与信号处理程序非常相似。或者,一种更昂贵的方法是轮询 Process.exitValue(),这将引发异常,直到子进程实际退出。

No, not precisely. You can call Process.waitFor() to wait for the process to exit. If you did that from a dedicated thread, however, that would be quite similar to a signal handler. Alternatively, a more expensive method is to poll Process.exitValue(), which will throw an exception until the child has actually exited.

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