如何使用 C 发送和捕获发送到 PID 的信号
假设,我知道我的父进程 id 并且想
kill(my_parent_id, SIGTERM)
作为父进程,我怎样才能捕获这个信号?
Suppose, i know the process of my parent id and would like to
kill(my_parent_id, SIGTERM)
As a parent process, how can i catch this signal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注册以捕获信号:
这是一个很好的 示例页面< /a>.
您可以使用旧样式,但不建议这样做:
Register to catch the signal:
Here is a good example page.
You could use the old style, but it is not suggested: