Searched refs:WTERMSIG (Results 1 - 25 of 93) sorted by relevance

1234

/freebsd-9.3-release/usr.sbin/cron/cron/
H A Dexterns.h88 # ifndef WTERMSIG
89 # define WTERMSIG(x) ((x) & 0x7f) macro
98 # ifndef WTERMSIG
99 # define WTERMSIG(x) ((x).w_termsig) macro
107 #define WIFSIGNALED(x) (WTERMSIG(x) != 0)
110 #define WIFEXITED(x) (WTERMSIG(x) == 0)
/freebsd-9.3-release/contrib/cvs/lib/
H A Dwait.h37 #ifndef WTERMSIG
38 #define WTERMSIG(w) ((w) & 0x7f) macro
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_wait.h72 #ifndef WTERMSIG
73 #define WTERMSIG(w) ((w) & 0177) macro
/freebsd-9.3-release/contrib/tcsh/
H A Dmi.wait.h31 #define WTERMSIG(s) (__LOW(s) & 0177) /* sig value */ macro
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-waitpid.h43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
/freebsd-9.3-release/contrib/bmake/
H A Dwait.h32 # define WTERMSIG(x) ((&x)->w_termsig) macro
/freebsd-9.3-release/contrib/amd/amd/
H A Dsched.c248 WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0,
271 pid, WTERMSIG(w));
/freebsd-9.3-release/bin/pwait/
H A Dpwait.c136 WTERMSIG(status));
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c139 WTERMSIG(status));
/freebsd-9.3-release/sys/sys/
H A Dwait.h57 #define WTERMSIG(x) (_WSTATUS(x)) macro
/freebsd-9.3-release/contrib/libreadline/examples/rlfe/
H A Dos.h451 #ifndef WTERMSIG
453 # define WTERMSIG(status) (status & 0177) macro
455 # define WTERMSIG(status) status.w_T.w_Termsig macro
/freebsd-9.3-release/contrib/lukemftpd/src/
H A Dlogwtmp.c138 ut.ut_exit.e_termination = (uint16_t)WTERMSIG(status);
/freebsd-9.3-release/tools/test/posixshm/
H A Dshm_test.c140 strsignal(WTERMSIG(status)));
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_shell.c178 if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) {
184 sigmsg(WTERMSIG(pstat)),
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Dconf.h311 #ifndef WTERMSIG
312 #define WTERMSIG(stat_val) ((stat_val) & 0177) macro
/freebsd-9.3-release/contrib/dialog/
H A Dui_getc.c58 #ifndef WTERMSIG
60 # define WTERMSIG(status) (status.w_termsig) macro
62 # define WTERMSIG(status) ((status) & 0x7f) macro
/freebsd-9.3-release/contrib/gcclibs/libiberty/testsuite/
H A Dtest-pexecute.c53 #ifndef WTERMSIG
54 #define WTERMSIG(S) ((S) & 0x7f) macro
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT)
/freebsd-9.3-release/crypto/openssh/
H A Dsandbox-systrace.c122 __func__, WTERMSIG(status));
/freebsd-9.3-release/contrib/cvs/src/
H A Drun.c308 if (WTERMSIG (status) == SIGPIPE)
494 raise (WTERMSIG (status));
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_compression_program.c263 if (WTERMSIG(state->exit_status) == SIGPIPE)
268 WTERMSIG(state->exit_status));
/freebsd-9.3-release/bin/sh/
H A Djobs.c343 i = WTERMSIG(ps->status);
492 retval = WTERMSIG(status) + 128;
991 st = WTERMSIG(status) + 128;
995 if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGINT)
1000 WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
1091 sig = WTERMSIG(sp->status);
/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dpipeline.c52 #define WTERMSIG(s) ((s) & 0177) macro
515 int sig = WTERMSIG(status);
/freebsd-9.3-release/contrib/binutils/binutils/
H A Ddllwrap.c50 #ifndef WTERMSIG
51 #define WTERMSIG(w) ((w) & 0177) macro
63 #ifndef WTERMSIG
64 #define WTERMSIG(w) ((w) & 0x7f) macro
410 warn (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
/freebsd-9.3-release/contrib/smbfs/lib/smb/
H A Dsubr.c299 __progname, args[0], WTERMSIG(status));
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dsimple_exec.c128 ret = WTERMSIG(status) + 128;

Completed in 247 milliseconds

1234