Home
last modified time | relevance | path

Searched refs:set_sighandler (Results 1 – 2 of 2) sorted by relevance

/external/strace/
Dstrace.c1560 set_sighandler(int signo, void (*sighandler)(int), struct sigaction *oldact) in set_sighandler() function
1791 set_sighandler(SIGCHLD, SIG_DFL, &params_for_tracee.child_sa); in init()
1897 set_sighandler(SIGTTOU, SIG_IGN, NULL); in init()
1898 set_sighandler(SIGTTIN, SIG_IGN, NULL); in init()
1901 set_sighandler(SIGTSTP, SIG_IGN, NULL); in init()
1908 set_sighandler(SIGHUP, interactive ? interrupt : SIG_IGN, NULL); in init()
1909 set_sighandler(SIGINT, interactive ? interrupt : SIG_IGN, NULL); in init()
1910 set_sighandler(SIGQUIT, interactive ? interrupt : SIG_IGN, NULL); in init()
1911 set_sighandler(SIGPIPE, interactive ? interrupt : SIG_IGN, NULL); in init()
1912 set_sighandler(SIGTERM, interactive ? interrupt : SIG_IGN, NULL); in init()
DChangeLog2068 strace.c: rename set_sigaction to set_sighandler.
2070 rename set_sigaction() to set_sighandler() for future definition of
2073 * strace.c (set_sigaction): Rename to set_sighandler.