在多线程程序中捕获 SIGINT

发布于 2024-11-14 04:23:09 字数 170 浏览 6 评论 0原文

我正在编写一个多线程程序,我想处理用户可能发出的 Ctrl-C 命令以终止执行。据我所知,不能保证能够取消每个工作线程的主线程会捕获信号。因此,是否有必要对工作线程的代码使用不同的信号处理程序,以便任何人都可以在信号到达时捕获信号,或者是否有另一种方法可以仅在主线程的代码中使用信号处理程序来实现这一点?

I am writing a multithreaded program where I want to handle a possible Ctrl-C command from the user to terminate execution. As far as I know there is no guarantee that the main thread, which is able to cancel every working thread, will catch the signal. Is it, therefore, necessary to have a different signal handler to the code of the working thread so that anyone will catch the signal if it arrives, or is there another way to do that with having a signal handler only in the main thread's code?

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

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

发布评论

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

评论(1

庆幸我还是我 2024-11-21 04:23:09

您可以使用 pthread_sigmask() 阻止来自调用线程的信号。

而且,由于阻塞的信号会继承到新创建的线程,因此您可以在主线程中阻塞 SIGINT,然后启动其他线程,然后在主线程中取消阻塞(如果这是更好的做法)。

You can block signals from the calling thread with pthread_sigmask().

And, as the blocked signals are inherited to newly created threads, you can block SIGINT in the main thread, then launch your other threads, and then unblock it in the main thread, if that is preferable.

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