Symbol: setsig
bin/ksh/edit.c
51
if (setsig(&sigtraps[SIGWINCH], x_sigwinch, SS_RESTORE_ORIG|SS_SHTRAP))
bin/ksh/jobs.c
160
setsig(&sigtraps[SIGCHLD], j_sigchld,
bin/ksh/jobs.c
180
setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
bin/ksh/jobs.c
316
setsig(&sigtraps[SIGTTIN], SIG_DFL,
bin/ksh/jobs.c
335
setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
bin/ksh/jobs.c
364
setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
bin/ksh/jobs.c
370
setsig(&sigtraps[tt_sigs[i]],
bin/ksh/jobs.c
499
setsig(&sigtraps[tt_sigs[i]], SIG_DFL,
bin/ksh/jobs.c
505
setsig(&sigtraps[SIGINT], SIG_IGN,
bin/ksh/jobs.c
507
setsig(&sigtraps[SIGQUIT], SIG_IGN,
bin/ksh/main.c
759
setsig(&sigtraps[sig], SIG_DFL,
bin/ksh/sh.h
580
int setsig(Trap *, sig_t, int);
bin/ksh/trap.c
278
setsig(p, (p->flags & TF_EXEC_IGN) ? SIG_IGN : SIG_DFL,
bin/ksh/trap.c
312
setsig(p, f, SS_RESTORE_CURR|SS_USER);
bin/ksh/trap.c
325
setsig(p, SIG_IGN, SS_RESTORE_CURR);
bin/ksh/trap.c
329
setsig(p, SIG_IGN, SS_RESTORE_CURR);
bin/ksh/trap.c
340
setsig(&sigtraps[SIGPIPE], SIG_DFL, SS_RESTORE_CURR);
bin/ksh/trap.c
49
setsig(&sigtraps[SIGINT], trapsig, SS_RESTORE_ORIG);
bin/ksh/trap.c
50
setsig(&sigtraps[SIGQUIT], trapsig, SS_RESTORE_ORIG);
bin/ksh/trap.c
51
setsig(&sigtraps[SIGTERM], trapsig, SS_RESTORE_ORIG);
bin/ksh/trap.c
52
setsig(&sigtraps[SIGHUP], trapsig, SS_RESTORE_ORIG);
bin/ksh/trap.c
61
setsig(&sigtraps[SIGALRM], alarm_catcher,
usr.bin/sndiod/sndiod.c
103
void setsig(void);
usr.bin/sndiod/sndiod.c
660
setsig();
usr.bin/vi/cl/cl_main.c
253
if (setsig(SIGHUP, &clp->oact[INDX_HUP], h_term) ||
usr.bin/vi/cl/cl_main.c
254
setsig(SIGINT, &clp->oact[INDX_INT], h_int) ||
usr.bin/vi/cl/cl_main.c
255
setsig(SIGTERM, &clp->oact[INDX_TERM], h_term) ||
usr.bin/vi/cl/cl_main.c
256
setsig(SIGWINCH, &clp->oact[INDX_WINCH], h_winch)
usr.bin/vi/cl/cl_main.c
260
if (setsig(SIGHUP, NULL, h_term) ||
usr.bin/vi/cl/cl_main.c
261
setsig(SIGINT, NULL, h_int) ||
usr.bin/vi/cl/cl_main.c
262
setsig(SIGTERM, NULL, h_term) ||
usr.bin/vi/cl/cl_main.c
263
setsig(SIGWINCH, NULL, h_winch)
usr.bin/vi/cl/cl_main.c
43
static int setsig(int, struct sigaction *, void (*)(int));