kqueue NOTE_EXIT 不起作用
我正在尝试使用 Apple 使用 kqueue 的示例但除非我在进程启动后开始观察 kqueue,否则回调永远不会被调用。但该进程的生命周期很短,如果该进程在我开始观察它之前或之后启动,我需要代码才能工作。
I am trying to use Apple's example of using kqueue but the callback is never called unless I start observing the kqueue after the process starts. But the lifetime of the process is short and i need the code to work if the process starts before or after I start observing it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在启动进程后立即向进程发送 SIGSTOP,然后在设置 kqueue 后发送 SIGCONT,会怎么样?
如果您直接使用 fork 和 exec,则可以让子进程向自己发送 SIGSTOP (使用 raise(3)) 并让父进程发送
SIGCONT
。What if you send the process a SIGSTOP immediately after starting it, and then SIGCONT after setting up the kqueue?
If you're using fork and exec directly, you could have the child send itself SIGSTOP (using raise(3)) and have the parent send it
SIGCONT
.