信号的组合键是什么

信号的组合键是什么

本文介绍了在终端上发送 SIGSTOP 信号的组合键是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

不是 Ctrl+Z.那是针对 SIGTSTP 的.此外, stty -a 显示 ^S 作为组合,但它似乎不起作用.

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

推荐答案

没有发送 SIGSTOP 的组合键.

There is no key combination to send SIGSTOP.

Control-S 告诉终端驱动程序暂停输出,但不向进程发送信号.Control-Q 恢复输出.

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

这篇关于在终端上发送 SIGSTOP 信号的组合键是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 02:37