叉子和叉子

发布于 2024-07-26 09:24:53 字数 51 浏览 4 评论 0原文

如果我设置ighandler 然后进行分叉。 子进程也会继承sighandlers吗?

If I setup sighandler and then do a fork. Will the child process also inherit the sighandlers?

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

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

发布评论

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

评论(2

够钟 2024-08-02 09:24:53

引用 Linux fork(2) 手册页

fork() 创建一个子进程,该子进程与父进程的不同之处仅在于其 PID 和 PPID,而且资源利用率设置为 0。文件锁和挂起信号不会被继承。

因此,虽然挂起的信号没有通过 fork() 操作,但信号处理程序本身却可以。 这是有道理的,因为信号属于(父)进程。

虽然不直接相关,但通常在 fork() 之后的 exec() 类型调用将销毁自全新可执行文件以来的所有信号处理程序正在被加载到进程中(覆盖当前服务信号的函数)。

Quoting the Linux fork(2) man page:

fork() creates a child process that differs from the parent process only in its PID and PPID, and in the fact that resource utilizations are set to 0. File locks and pending signals are not inherited.

So, while the pending signals do not make it through the fork() operation, the signal handlers themselves do. This makes sense since the signals belong to the (parent) process.

Although not directly related, the exec()-type call that often follows a fork() will destroy all signal handlers since a brand new executable is being loaded into the process (overwriting the functions currently servicing signals).

天赋异禀 2024-08-02 09:24:53

是的 fork() 将进程一分为二。 适用于父进程的所有资源也可供子进程使用。

Yes fork() divides the process into two. All the resources that are applicable to parent process are available to child process too.

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