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

12345

/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dksh_wait.h16 # undef WTERMSIG macro
37 #ifndef WTERMSIG
38 # define WTERMSIG(s) ((s) & 0x7f) macro
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dwait.h37 #ifndef WTERMSIG
38 #define WTERMSIG(w) ((w) & 0x7f) macro
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dwait-process.c40 #define WTERMSIG(x) ((x) & 0xff) /* or: SIGABRT ?? */ macro
43 #define WIFSIGNALED(x) (WTERMSIG (x) != 0) /* or: ((x) == 3) ?? */
44 #define WIFEXITED(x) (WTERMSIG (x) == 0) /* or: ((x) != 3) ?? */
51 /* On Linux, WEXITSTATUS are bits 15..8 and WTERMSIG are bits 7..0, while
55 # ifndef WTERMSIG
56 # define WTERMSIG(x) ((x).w_termsig) macro
66 # ifndef WTERMSIG
67 # define WTERMSIG(x) ((x) & 0x7f) macro
79 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/include/ac/
H A Dwait.h42 #ifndef WTERMSIG
43 # define WTERMSIG(s) (LDAP_LO(s) & 0177) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dgdb_wait.h71 #ifndef WTERMSIG
72 #define WTERMSIG(w) ((w) & 0177) macro
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/test/
H A Dnot.c33 pid, WTERMSIG(status));
/netbsd-6-1-5-RELEASE/lib/libutil/compat/
H A Dcompat_logoutx.c68 utp->ut_exit.e_termination = (uint16_t)WTERMSIG(status);
/netbsd-6-1-5-RELEASE/lib/libutil/
H A Dlogoutx.c68 utp->ut_exit.e_termination = (uint16_t)WTERMSIG(status);
H A Dttyaction.c152 if (WTERMSIG(status)) {
154 actfile, linenum, WTERMSIG(status));
H A Dlogwtmpx.c73 ut.ut_exit.e_termination = (uint16_t)WTERMSIG(status);
/netbsd-6-1-5-RELEASE/tests/lib/libc/gen/
H A Dt_assert.c121 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT)
H A Dt_pause.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
/netbsd-6-1-5-RELEASE/tests/rump/rumpkern/
H A Dt_signals.c112 ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
H A Dt_kern.c75 ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dsched.c250 WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0,
273 pid, WTERMSIG(w));
/netbsd-6-1-5-RELEASE/tests/lib/libc/sys/
H A Dt_mkfifo.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
195 if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
H A Dt_kill.c75 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i])
252 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
298 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dwait.h59 #define WTERMSIG(x) (_WSTATUS(x)) macro
/netbsd-6-1-5-RELEASE/distrib/utils/ssh/
H A Dssh.c265 if (WTERMSIG(cstat)) {
512 if (WTERMSIG(cstat)) {
583 WTERMSIG(cstat));
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/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
/netbsd-6-1-5-RELEASE/external/bsd/cron/dist/
H A Dpopen.c189 return WTERMSIG(status);
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-run-shell.c114 retcode = WTERMSIG(job->status);
/netbsd-6-1-5-RELEASE/libexec/ftpd/
H A Dlogwtmp.c138 ut.ut_exit.e_termination = (uint16_t)WTERMSIG(status);
/netbsd-6-1-5-RELEASE/tests/dev/sysmon/
H A Dt_swwdog.c164 ATF_REQUIRE_EQ(WTERMSIG(status), SIGABRT);
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_shell.c172 if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) {
178 sigmsg(WTERMSIG(pstat)),

Completed in 405 milliseconds

12345