阻塞信号
信号处理程序的默认行为是什么。当它执行时,它会阻止相同的信号吗?
问候, 初级。
What is the default behavior of signal handler. While it executes, does it block the same signal ?
Regards,
Jrp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于
sa_mask
项的内容以及struct sigaction
的sa_flags
项中是否存在SA_NODEFER
传递给sigaction(2)
。That depends on the contents of the
sa_mask
item and the presence ofSA_NODEFER
in thesa_flags
item of thestruct sigaction
passed tosigaction(2)
.