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

1234

/freebsd-10.1-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-10.1-release/contrib/gdb/gdb/
H A Dgdb_wait.h72 #ifndef WTERMSIG
73 #define WTERMSIG(w) ((w) & 0177) macro
/freebsd-10.1-release/contrib/tcsh/
H A Dmi.wait.h31 #define WTERMSIG(s) (__LOW(s) & 0177) /* sig value */ macro
/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dbsd-waitpid.h43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
/freebsd-10.1-release/contrib/bmake/
H A Dwait.h32 # define WTERMSIG(x) ((&x)->w_termsig) macro
/freebsd-10.1-release/contrib/amd/amd/
H A Dsched.c248 WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0,
271 pid, WTERMSIG(w));
/freebsd-10.1-release/contrib/nvi/ex/
H A Dex_shell.c175 if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) {
181 sigmsg(WTERMSIG(pstat)),
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c139 WTERMSIG(status));
/freebsd-10.1-release/sys/sys/
H A Dwait.h57 #define WTERMSIG(x) (_WSTATUS(x)) macro
/freebsd-10.1-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-10.1-release/bin/pwait/
H A Dpwait.c136 WTERMSIG(status));
/freebsd-10.1-release/tools/test/posixshm/
H A Dshm_test.c155 strsignal(WTERMSIG(status)));
/freebsd-10.1-release/gnu/usr.bin/rcs/lib/
H A Dconf.h311 #ifndef WTERMSIG
312 #define WTERMSIG(stat_val) ((stat_val) & 0177) macro
/freebsd-10.1-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-10.1-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-10.1-release/crypto/openssh/
H A Dsandbox-systrace.c122 __func__, WTERMSIG(status));
/freebsd-10.1-release/usr.sbin/autofs/
H A Dpopen.c177 cur->command, pid, WTERMSIG(status));
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_program.c279 if (WTERMSIG(state->exit_status) == SIGPIPE)
284 WTERMSIG(state->exit_status));
/freebsd-10.1-release/bin/sh/
H A Djobs.c340 i = WTERMSIG(ps->status);
501 retval = WTERMSIG(status) + 128;
1011 st = WTERMSIG(status) + 128;
1015 if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGINT)
1020 WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
1154 sig = WTERMSIG(sp->status);
/freebsd-10.1-release/contrib/groff/src/roff/groff/
H A Dpipeline.c52 #define WTERMSIG(s) ((s) & 0177) macro
515 int sig = WTERMSIG(status);
/freebsd-10.1-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-10.1-release/contrib/smbfs/lib/smb/
H A Dsubr.c299 __progname, args[0], WTERMSIG(status));
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Drkpty.c295 printf("killed by signal: %d\n", WTERMSIG(status));
H A Dsimple_exec.c125 ret = WTERMSIG(status) + 128;
/freebsd-10.1-release/sbin/fsck/
H A Dpreen.c189 WTERMSIG(status));

Completed in 239 milliseconds

1234