diff --git a/NEWS b/NEWS index 1c710a3b..a2afaa32 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ procps-ng-3.3.10 ---------------- * sysctl --system loads default config file - Debian #732920 + * ps doesn't exit on SIGCONT procps-ng-3.3.9 --------------- diff --git a/ps/display.c b/ps/display.c index c20285d4..693154bd 100644 --- a/ps/display.c +++ b/ps/display.c @@ -563,6 +563,7 @@ int main(int argc, char *argv[]){ default: sigaction(i,&sa,NULL); case 0: + case SIGCONT: case SIGINT: /* ^C */ case SIGTSTP: /* ^Z */ case SIGTTOU: /* see stty(1) man page */