kqueue NOTE_EXIT 不起作用

发布于 2024-09-08 12:34:05 字数 225 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

浅忆流年 2024-09-15 12:34:05

如果在启动进程后立即向进程发送 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.

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