| /freebsd-14-stable/tests/sys/kern/ |
| HD | ptrace_test.c | 145 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in attach_child() 204 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 306 CHILD_REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 412 CHILD_REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 603 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in handle_fork_events() 614 REQUIRE_EQ(WSTOPSIG(status), SIGTRAP); in handle_fork_events() 653 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 709 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 760 REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() 1054 CHILD_REQUIRE_EQ(WSTOPSIG(status), SIGSTOP); in ATF_TC_BODY() [all …]
|
| HD | pdeathsig.c | 295 assert(WSTOPSIG(status) == SIGSTOP); in ATF_TC_BODY() 309 assert(WSTOPSIG(status) == SIGINFO); in ATF_TC_BODY() 312 WSTOPSIG(status)); in ATF_TC_BODY()
|
| /freebsd-14-stable/contrib/bmake/ |
| HD | wait.h | 33 # define WSTOPSIG(x) ((&x)->w_stopsig) macro 53 #ifndef WSTOPSIG 54 # define WSTOPSIG(x) WSTOPPED macro
|
| HD | compat.c | 398 status = WSTOPSIG(reason); /* stopped */ in Compat_RunCommand()
|
| HD | job.c | 2072 switch (WSTOPSIG(status)) { in JobReapChild() 2083 job->node->name, WSTOPSIG(status)); in JobReapChild()
|
| /freebsd-14-stable/tools/test/ptrace/ |
| HD | scescx.c | 78 snprintf(b, sizeof(b), "SIG(%s)", strsignal(WSTOPSIG(status))); in decode_wait_status() 240 assert(WSTOPSIG(status) == SIGTRAP); in trace_sc() 265 assert(WSTOPSIG(status) == SIGTRAP); in trace_sc() 324 assert(WSTOPSIG(status) == SIGTRAP); in trace_cont() 411 assert(WSTOPSIG(status) == SIGSTOP); in main() 440 assert(WSTOPSIG(status) == SIGSTOP); in main()
|
| /freebsd-14-stable/tools/test/stress2/misc/ |
| HD | ptrace9.sh | 90 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) 102 printf("stopping signal is %d\n", WSTOPSIG(status));
|
| HD | ptrace10.sh | 136 WSTOPSIG(status));
|
| HD | laundry.sh | 163 WSTOPSIG(status));
|
| /freebsd-14-stable/lib/libproc/ |
| HD | proc_util.c | 69 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP) in proc_continue() 70 pending = WSTOPSIG(phdl->wstat); in proc_continue()
|
| /freebsd-14-stable/contrib/netbsd-tests/kernel/ |
| HD | t_ptrace_wait.h | 301 strlcpy(st, strsignal(WSTOPSIG(status)), sizeof(st)); in validate_status_stopped() 304 ATF_REQUIRE_EQ_MSG(WSTOPSIG(status), expected, in validate_status_stopped() 316 FORKEE_ASSERT_EQ(WSTOPSIG(status), expected); in forkee_status_stopped()
|
| /freebsd-14-stable/contrib/tcsh/ |
| HD | mi.wait.h | 34 #define WSTOPSIG(s) (__HIGH(s) & 0377) /* stop signal */ macro
|
| HD | sh.proc.c | 58 #ifndef WSTOPSIG 59 # define WSTOPSIG(w) (((union wait *) &(w))->w_stopsig) macro 288 pp->p_reason = WSTOPSIG(w); in pchild()
|
| /freebsd-14-stable/tests/sys/vm/ |
| HD | mlock_test.c | 70 ATF_REQUIRE(WSTOPSIG(status) == SIGSTOP); in test_wired_copy_on_write() 80 "child exited with status %d", WSTOPSIG(status)); in test_wired_copy_on_write()
|
| /freebsd-14-stable/sys/sys/ |
| HD | wait.h | 56 #define WSTOPSIG(x) (_W_INT(x) >> 8) macro
|
| /freebsd-14-stable/contrib/netbsd-tests/lib/libc/sys/ |
| HD | t_wait.c | 212 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY() 287 ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP); in ATF_TC_BODY()
|
| /freebsd-14-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_stoptheworld_linux_libcdep.cpp | 176 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread() 178 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
|
| /freebsd-14-stable/usr.sbin/ppp/ |
| HD | exec.c | 367 WSTOPSIG(stat)); in exec_Create()
|
| /freebsd-14-stable/contrib/netbsd-tests/lib/libc/gen/ |
| HD | t_siginfo.c | 160 ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), status); in sigchild_action()
|
| /freebsd-14-stable/contrib/llvm-project/lldb/source/Host/common/ |
| HD | Host.cpp | 603 return {Stop, uint8_t(WSTOPSIG(wstatus))}; in Decode()
|
| /freebsd-14-stable/lib/libutil/ |
| HD | pw_util.c | 329 raise(WSTOPSIG(pstat)); in pw_edit()
|
| /freebsd-14-stable/usr.bin/truss/ |
| HD | setup.c | 216 sig = WIFSTOPPED(status) ? WSTOPSIG(status) : 0; in detach_proc()
|
| /freebsd-14-stable/usr.bin/gcore/ |
| HD | elfcore.c | 166 sig = WIFSTOPPED(g_status) ? WSTOPSIG(g_status) : 0; in elf_detach()
|
| /freebsd-14-stable/sys/compat/linux/ |
| HD | linux_misc.c | 735 (bsd_to_linux_signal(WSTOPSIG(tmpstat)) << 8); in linux_common_wait() 737 if (WSTOPSIG(status) == SIGTRAP) { in linux_common_wait()
|
| /freebsd-14-stable/contrib/sendmail/include/sm/ |
| HD | conf.h | 2365 # undef WSTOPSIG
|