Fix long standing job control bug. SIGTSTP shouldn't be ignored.

Special instructions tested:
suspend
stop $$
This commit is contained in:
David Xu 2003-03-11 00:10:22 +00:00
parent e574e444e0
commit e9da86cbbe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112072

View File

@ -327,7 +327,6 @@ main(int argc, char *argv[])
sigemptyset(&sa.sa_mask);
sigaction(SIGINT, &sa, &sa_int);
sigaction(SIGQUIT, &sa, &sa_quit);
sigaction(SIGTSTP, &sa, &sa_tstp);
statusp = 1;
child_pid = fork();