POSIX 线程和 SIGSEGV
我的系统有 10 多个线程。我有一个信号处理程序来捕获 SIGSEGV。如果一个线程生成 SIGSEGV,该信号是否会发送到所有线程,还是仅发送到生成该信号的线程?
I have a system with 10+ threads. I have a signal handler to catch SIGSEGV. if one thread generates SIGSEGV, does that signal go to all threads, or just to the thread that generated the signal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SIGSEGV
是同步信号。它将被传递到导致无效内存访问的线程。来自signal(7)
:SIGSEGV
is a synchronous signal. It'll be delivered to the thread that caused the invalid memory access. Fromsignal(7)
: