叉子和叉子
如果我设置ighandler 然后进行分叉。 子进程也会继承sighandlers吗?
If I setup sighandler and then do a fork. Will the child process also inherit the sighandlers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用 Linux
fork(2)
手册页:因此,虽然挂起的信号没有通过 fork() 操作,但信号处理程序本身却可以。 这是有道理的,因为信号属于(父)进程。
虽然不直接相关,但通常在
fork()
之后的exec()
类型调用将销毁自全新可执行文件以来的所有信号处理程序正在被加载到进程中(覆盖当前服务信号的函数)。Quoting the Linux
fork(2)
man page: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 afork()
will destroy all signal handlers since a brand new executable is being loaded into the process (overwriting the functions currently servicing signals).是的 fork() 将进程一分为二。 适用于父进程的所有资源也可供子进程使用。
Yes fork() divides the process into two. All the resources that are applicable to parent process are available to child process too.