Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我发送 SIGTSTP 信号,线程会停止吗?或者换句话说,它会像 SIGTSTP 和 SIGCONT 上的进程一样吗?
提前致谢。
来自`man 3p pthread_kill:
请注意, pthread_kill() 仅导致在给定线程的上下文中处理信号;信号动作(终止或停止)会影响整个过程。
所以我会说你将停止整个过程,而不仅仅是线程。