Lines Matching refs:signal
235 oldhup = signal(SIGHUP, SIG_IGN);
237 signal(SIGHUP, onhup);
238 oldquit = signal(SIGQUIT, SIG_IGN);
239 ruptible = signal(SIGINT, SIG_IGN) == SIG_DFL;
240 if (signal(SIGTERM, SIG_IGN) == SIG_DFL)
241 signal(SIGTERM, onhup);
242 signal(SIGILL, oncore);
243 signal(SIGTRAP, oncore);
244 signal(SIGIOT, oncore);
245 signal(SIGFPE, oncore);
246 signal(SIGBUS, oncore);
247 signal(SIGSEGV, oncore);
248 signal(SIGPIPE, oncore);
419 if (!hush && signal(SIGTSTP, SIG_IGN) == SIG_DFL)
420 signal(SIGTSTP, onsusp), dosusp++;
705 pstat = signal(SIGINT, SIG_IGN);
714 signal(SIGINT, pstat);