SIGTSTP not a bug

This commit is contained in:
albert 2005-01-05 20:34:51 +00:00
parent aae3e72ab7
commit 55aee6a969
2 changed files with 2 additions and 0 deletions

1
NEWS
View File

@ -2,6 +2,7 @@ procps-3.2.4 --> procps-3.2.5
ps: security labels can contain any printable ASCII
top: help and version message on stdout, with exit(0) #283541
ps: SIGTSTP from ^Z shouldn't print bug email address
procps-3.2.3 --> procps-3.2.4

View File

@ -563,6 +563,7 @@ int main(int argc, char *argv[]){
sigaction(i,&sa,NULL);
case 0:
case SIGINT: /* ^C */
case SIGTSTP: /* ^Z */
case SIGQUIT: /* ^\ */
case SIGPROF: /* profiling */
case SIGKILL: /* can not catch */