Home
last modified time | relevance | path

Searched refs:WIFSIGNALED (Results 1 – 25 of 122) sorted by relevance

12345

/freebsd-11-stable/contrib/netbsd-tests/kernel/
HDt_ptrace_wait.h228 ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process"); in validate_status_exited()
241 FORKEE_ASSERTX(!WIFSIGNALED(status)); in forkee_status_exited()
252 ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process"); in validate_status_continued()
261 FORKEE_ASSERTX(!WIFSIGNALED(status)); in forkee_status_continued()
270 ATF_REQUIRE_MSG(WIFSIGNALED(status), "Reported !signaled process"); in validate_status_signaled()
285 FORKEE_ASSERTX(WIFSIGNALED(status)); in forkee_status_signaled()
297 ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process"); in validate_status_stopped()
313 FORKEE_ASSERTX(!WIFSIGNALED(status)); in forkee_status_stopped()
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
HDt_wait.c122 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGTERM); in ATF_TC_BODY()
159 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGSEGV in ATF_TC_BODY()
199 ATF_REQUIRE(!WIFSIGNALED(st)); in ATF_TC_BODY()
214 ATF_REQUIRE(!WIFSIGNALED(st)); in ATF_TC_BODY()
229 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT); in ATF_TC_BODY()
274 ATF_REQUIRE(!WIFSIGNALED(st)); in ATF_TC_BODY()
285 ATF_REQUIRE(!WIFSIGNALED(st)); in ATF_TC_BODY()
296 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT); in ATF_TC_BODY()
HDt_kill.c75 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i]) in ATF_TC_BODY()
252 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL) in ATF_TC_BODY()
298 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL) in ATF_TC_BODY()
HDt_mkfifo.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL) in ATF_TC_BODY()
195 if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL) in ATF_TC_BODY()
HDt_msgsnd.c114 if (WIFEXITED(sta) != 0 || WIFSIGNALED(sta) == 0) in ATF_TC_BODY()
272 if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0) in ATF_TC_BODY()
HDt_msgrcv.c139 if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0) in ATF_TC_BODY()
282 if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL) in ATF_TC_BODY()
/freebsd-11-stable/crypto/openssh/openbsd-compat/
HDbsd-waitpid.h33 #undef WIFSIGNALED
39 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) macro
41 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)
/freebsd-11-stable/contrib/gdb/gdb/
HDgdb_wait.h49 #ifndef WIFSIGNALED
50 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) macro
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
HDt_assert.c99 if (WIFSIGNALED(sta) != 0 || WIFEXITED(sta) == 0) in ATF_TC_BODY()
137 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT) in ATF_TC_BODY()
HDt_pause.c103 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL) in ATF_TC_BODY()
/freebsd-11-stable/usr.sbin/cron/cron/
HDexterns.h106 #ifndef WIFSIGNALED
107 #define WIFSIGNALED(x) (WTERMSIG(x) != 0) macro
/freebsd-11-stable/tools/test/ptrace/
HDscescx.c64 if (WIFSIGNALED(status)) { in decode_wait_status()
231 if (WIFEXITED(status) || WIFSIGNALED(status)) { in trace_sc()
256 if (WIFEXITED(status) || WIFSIGNALED(status)) { in trace_sc()
297 if (WIFEXITED(status) || WIFSIGNALED(status)) { in trace_cont()
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
HDconf.h313 #undef WIFSIGNALED /* Avoid 4.3BSD incompatibility with Posix. */
315 #ifndef WIFSIGNALED
316 #define WIFSIGNALED(stat_val) ((unsigned)(stat_val) - 1 < 0377) macro
/freebsd-11-stable/tests/sys/kern/
HDreaper.c476 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM); in ATF_TC_BODY()
630 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM); in ATF_TC_BODY()
636 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM); in ATF_TC_BODY()
710 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR1); in ATF_TC_BODY()
717 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR1); in ATF_TC_BODY()
730 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR2); in ATF_TC_BODY()
737 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGUSR2); in ATF_TC_BODY()
HDwaitpid_nohang.c62 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM); in ATF_TC_BODY()
/freebsd-11-stable/contrib/amd/amd/
HDsched.c244 WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0, in do_task_notify()
265 if (WIFSIGNALED(w))
/freebsd-11-stable/contrib/binutils/binutils/
HDdllwrap.c47 #ifndef WIFSIGNALED
48 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) macro
60 #ifndef WIFSIGNALED
61 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f) macro
408 else if (WIFSIGNALED (wait_status)) in run()
/freebsd-11-stable/contrib/tcsh/
HDmi.wait.h32 #define WIFSIGNALED(s) ((((unsigned int)(s)-1) & 0xFFFF) < 0xFF) /* signaled */ macro
HDtc.wait.h150 # define WIFSIGNALED(x) (((x).w_stopval != WSTOPPED) && ((x).w_termsig != 0)) macro
/freebsd-11-stable/contrib/gcclibs/libiberty/testsuite/
HDtest-pexecute.c50 #ifndef WIFSIGNALED
51 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) macro
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT) in main()
/freebsd-11-stable/contrib/netbsd-tests/rump/rumpkern/
HDt_signals.c112 ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT); in ATF_TC_BODY()
HDt_kern.c75 ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT); in locktest()
/freebsd-11-stable/usr.sbin/kgzip/
HDkgzld.c100 if (WIFSIGNALED(status) || WEXITSTATUS(status)) in kgzld()
/freebsd-11-stable/usr.bin/ldd/
HDldd.c127 else if (WIFSIGNALED(status)) in execldd32()
246 } else if (WIFSIGNALED(status)) { in main()
/freebsd-11-stable/sys/sys/
HDwait.h56 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0 && (x) != 0x13) macro

12345