/freebsd/tests/sys/kern/ |
H A D | ptrace_test.c | 142 ATF_REQUIRE(WIFSTOPPED(status)); in attach_child() 201 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 303 CHILD_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 409 CHILD_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 525 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 591 ATF_REQUIRE(WIFSTOPPED(status)); in handle_fork_events() 650 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 706 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 757 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 1051 CHILD_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() [all …]
|
H A D | pdeathsig.c | 294 assert(WIFSTOPPED(status)); in ATF_TC_BODY() 308 assert(WIFSTOPPED(status)); in ATF_TC_BODY()
|
H A D | fdgrowtable_test.c | 258 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY()
|
/freebsd/contrib/netbsd-tests/kernel/ |
H A D | t_ptrace_wait.h | 229 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process"); in validate_status_exited() 242 FORKEE_ASSERTX(!WIFSTOPPED(status)); in forkee_status_exited() 253 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process"); in validate_status_continued() 262 FORKEE_ASSERTX(!WIFSTOPPED(status)); in forkee_status_continued() 271 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process"); in validate_status_signaled() 286 FORKEE_ASSERTX(!WIFSTOPPED(status)); in forkee_status_signaled() 298 ATF_REQUIRE_MSG(WIFSTOPPED(status), "Reported !stopped process"); in validate_status_stopped() 314 FORKEE_ASSERTX(WIFSTOPPED(status)); in forkee_status_stopped()
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | bsd-waitpid.h | 32 #undef WIFSTOPPED 38 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro 39 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
|
/freebsd/contrib/netbsd-tests/lib/libc/sys/ |
H A D | t_wait.c | 212 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY() 228 ATF_REQUIRE(!WIFSTOPPED(st)); in ATF_TC_BODY() 242 ATF_REQUIRE(!WIFSTOPPED(st)); in ATF_TC_BODY() 287 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY() 299 ATF_REQUIRE(!WIFSTOPPED(st)); in ATF_TC_BODY() 309 ATF_REQUIRE(!WIFSTOPPED(st)); in ATF_TC_BODY()
|
/freebsd/tools/test/ptrace/ |
H A D | scescx.c | 72 if (WIFSTOPPED(status)) { in decode_wait_status() 238 assert(WIFSTOPPED(status)); in trace_sc() 263 assert(WIFSTOPPED(status)); in trace_sc() 322 assert(WIFSTOPPED(status)); in trace_cont() 409 assert(WIFSTOPPED(status)); in main() 438 assert(WIFSTOPPED(status)); in main()
|
/freebsd/tools/test/stress2/misc/ |
H A D | ptrace9.sh | 90 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) 100 if (!WIFSTOPPED(status))
|
H A D | ptrace10.sh | 120 if (!WIFSTOPPED(status)) 132 if (!WIFSTOPPED(status))
|
H A D | ptrace8.sh | 97 else if (!WIFSTOPPED(status))
|
H A D | ptrace5.sh | 100 else if (!WIFSTOPPED(status))
|
H A D | laundry.sh | 161 } else if (WIFSTOPPED(status)) {
|
H A D | ptrace6.sh | 101 else if (!WIFSTOPPED(status))
|
H A D | ptrace7.sh | 128 else if (!WIFSTOPPED(status))
|
/freebsd/lib/libproc/ |
H A D | proc_create.c | 159 if (!WIFSTOPPED(status)) in proc_attach() 217 if (!WIFSTOPPED(status)) { in proc_create()
|
H A D | proc_util.c | 161 if (WIFSTOPPED(status)) in proc_wstatus()
|
/freebsd/contrib/tcsh/ |
H A D | mi.wait.h | 33 #define WIFSTOPPED(s) (__LOW(s) == 0177) /* stopped */ macro
|
H A D | tc.wait.h | 149 # define WIFSTOPPED(x) ((x).w_stopval == WSTOPPED) macro
|
/freebsd/bin/sh/ |
H A D | jobs.c | 298 if (WIFSTOPPED(ps->status)) { in restartjob() 394 while (!WIFSTOPPED(ps->status) && ps > jp->ps) in showjob() 396 if (WIFSTOPPED(ps->status)) in showjob() 731 if (jp->ps[i].status == -1 || WIFSTOPPED(jp->ps[i].status)) { in killjob() 1104 else if (WIFSTOPPED(status)) in waitforjob() 1209 WIFSTOPPED(sp->status))) { in dowait() 1222 else if (WIFSTOPPED(sp->status)) in dowait()
|
/freebsd/sys/sys/ |
H A D | wait.h | 53 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED) macro
|
/freebsd/crypto/openssh/ |
H A D | sandbox-systrace.c | 137 if (!WIFSTOPPED(status)) { in ssh_sandbox_parent()
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | conf.h | 717 # undef WIFSTOPPED 2362 # undef WIFSTOPPED 2928 # ifndef WIFSTOPPED 2929 # define WIFSTOPPED(st) (((st) & 0100) == 0) macro
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | simple_exec.c | 118 if(WIFSTOPPED(status)) in wait_for_process_timed()
|
/freebsd/tests/sys/vm/ |
H A D | mlock_test.c | 69 ATF_REQUIRE(WIFSTOPPED(status)); in test_wired_copy_on_write()
|
/freebsd/sbin/init/ |
H A D | init.c | 978 if (wpid == pid && WIFSTOPPED(status)) { in single_user() 1151 if (wpid == pid && WIFSTOPPED(status)) { in run_script() 2019 if (wpid == pid && WIFSTOPPED(status)) { in runshutdown()
|