What is the key combination to send a SIGSTOP signal on terminal?

喜你入骨 提交于 2019-12-07 16:02:22

问题


It is not Ctrl+Z. That is for SIGTSTP. Also, stty -a shows ^S as the combination but it doesn't seem to work.


回答1:


There is no key combination to send SIGSTOP.

Control-S tells the terminal driver to suspend output, but does not send a signal to the process. Control-Q resumes output.



来源:https://stackoverflow.com/questions/8513923/what-is-the-key-combination-to-send-a-sigstop-signal-on-terminal

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!