What is the difference between SIGSTOP and SIGTSTP?

前端 未结 3 1745
南方客
南方客 2020-11-30 19:00

Just wondering about the difference between SIGSTOP and SIGTSTP signals.

3条回答
  •  旧时难觅i
    2020-11-30 19:25

    /usr/include/x86_64-linux-gnu/bits/signum.h

    #define SIGSTOP     19  /* Stop, unblockable (POSIX).  */
    #define SIGTSTP     20  /* Keyboard stop (POSIX).  */
    

提交回复
热议问题