本文介绍了SIGSTOP和SIGTSTP有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
只想知道SIGSTOP和SIGTSTP信号之间的区别.
Just wondering about the difference between SIGSTOP and SIGTSTP signals.
推荐答案
两个信号都被设计为挂起一个进程,该进程最终将通过SIGCONT
恢复.它们之间的主要区别是:
Both signals are designed to suspend a process which will be eventually resumed with SIGCONT
. The main differences between them are:
-
SIGSTOP
是通过编程方式发送的信号(例如:kill -STOP pid
),而SIGTSTP
(对于 sig nal- t erminal tty驱动程序(通常是-)通过键盘输入 stop ).
SIGSTOP
is a signal sent programmatically (eg:kill -STOP pid
) whileSIGTSTP
(for signal - terminal stop) may also be sent through thetty
driver by a user typing on a keyboard, usually -.
SIGSTOP
不能忽略. SIGTSTP
可能是.
SIGSTOP
cannot be ignored. SIGTSTP
might be.
这篇关于SIGSTOP和SIGTSTP有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!