Searched refs:WIFSIGNALED (Results 1 - 25 of 104) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dksh_wait.h15 # undef WIFSIGNALED macro
34 #ifndef WIFSIGNALED
35 # define WIFSIGNALED(s) (((s) & 0xff) != 0 && ((s) & 0xff) != 0x7f) macro
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dwait.h24 #ifndef WIFSIGNALED
25 #define WIFSIGNALED(w) (((w) & 0xff) != 0x7f && ((w) & 0xff) != 0) macro
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/include/ac/
H A Dwait.h39 #ifndef WIFSIGNALED
40 # define WIFSIGNALED(s) (LDAP_LO(s) > 0 && LDAP_HI(s) == 0) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dgdb_wait.h48 #ifndef WIFSIGNALED
49 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) macro
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/test/
H A Dnot.c30 if (WIFSIGNALED(status))
/netbsd-6-1-5-RELEASE/tests/lib/libc/gen/
H A Dt_assert.c84 if (WIFSIGNALED(sta) != 0 || WIFEXITED(sta) == 0)
121 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT)
H A Dt_pause.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
/netbsd-6-1-5-RELEASE/lib/libutil/compat/
H A Dcompat_logoutx.c67 if (WIFSIGNALED(status))
/netbsd-6-1-5-RELEASE/lib/libutil/
H A Dlogoutx.c67 if (WIFSIGNALED(status))
H A Dlogwtmpx.c72 if (WIFSIGNALED(status))
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dwait-process.c43 #define WIFSIGNALED(x) (WTERMSIG (x) != 0) /* or: ((x) == 3) ?? */ macro
76 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
78 #ifndef WIFSIGNALED
79 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f) macro
88 WTERMSIG(x) only if WIFSIGNALED(x) is true, and
373 /* One of WIFSIGNALED (status), WIFEXITED (status), WIFSTOPPED (status)
387 if (WIFSIGNALED (status))
/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,
271 if (WIFSIGNALED(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)
H A Dt_msgrcv.c137 if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
281 if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
H A Dt_msgsnd.c109 if (WIFEXITED(sta) != 0 || WIFSIGNALED(sta) == 0)
247 if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dwait.h58 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0) macro
/netbsd-6-1-5-RELEASE/gnu/usr.bin/rcs/lib/
H A Dconf.h315 #undef WIFSIGNALED /* Avoid 4.3BSD incompatibility with Posix. */ macro
317 #ifndef WIFSIGNALED
318 #define WIFSIGNALED(stat_val) ((unsigned)(stat_val) - 1 < 0377) macro
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-run-shell.c113 } else if (WIFSIGNALED(job->status)) {
/netbsd-6-1-5-RELEASE/libexec/ftpd/
H A Dlogwtmp.c137 if (WIFSIGNALED(status))
/netbsd-6-1-5-RELEASE/tests/dev/sysmon/
H A Dt_swwdog.c163 ATF_REQUIRE(WIFSIGNALED(status));
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/testsuite/
H A Dtest-pexecute.c50 #ifndef WIFSIGNALED
51 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) macro
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/testsuite/
H A Dtest-pexecute.c50 #ifndef WIFSIGNALED
51 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) macro
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT)

Completed in 143 milliseconds

12345