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

12345

/freebsd-11-stable/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-11-stable/contrib/gdb/gdb/
H A Dgdb_wait.h72 #ifndef WTERMSIG
73 #define WTERMSIG(w) ((w) & 0177) macro
/freebsd-11-stable/contrib/tcsh/
H A Dmi.wait.h31 #define WTERMSIG(s) (__LOW(s) & 0177) /* sig value */ macro
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-waitpid.h41 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
/freebsd-11-stable/tests/sys/kern/
H A Dwaitpid_nohang.c62 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM);
H A Dreaper.c476 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM);
630 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM);
636 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM);
710 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR1);
717 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR1);
730 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR2);
737 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR2);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_pause.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
H A Dt_assert.c137 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT)
/freebsd-11-stable/contrib/bmake/
H A Dwait.h32 # define WTERMSIG(x) ((&x)->w_termsig) macro
/freebsd-11-stable/contrib/netbsd-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);
/freebsd-11-stable/contrib/netbsd-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_wait.c122 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGTERM);
159 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGSEGV
229 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
296 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
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)
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_shell.c175 if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) {
181 sigmsg(WTERMSIG(pstat)),
/freebsd-11-stable/contrib/amd/amd/
H A Dsched.c244 WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0,
267 pid, WTERMSIG(w));
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c139 WTERMSIG(status));
/freebsd-11-stable/sys/sys/
H A Dwait.h57 #define WTERMSIG(x) (_WSTATUS(x)) macro
/freebsd-11-stable/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-11-stable/contrib/netbsd-tests/dev/sysmon/
H A Dt_swwdog.c165 ATF_REQUIRE_EQ(WTERMSIG(status), SIGABRT);
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Dconf.h311 #ifndef WTERMSIG
312 #define WTERMSIG(stat_val) ((stat_val) & 0177) macro
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_stresscli.c208 if (!WIFSIGNALED(status) || WTERMSIG(status) != thesig){
/freebsd-11-stable/bin/pwait/
H A Dpwait.c185 WTERMSIG(status));

Completed in 461 milliseconds

12345