Symbol: WSTOPSIG
bin/csh/proc.c
119
pp->p_reason = WSTOPSIG(w);
bin/ksh/jobs.c
1468
strlcpy(buf, sigtraps[WSTOPSIG(p->status)].mess,
bin/sh/jobs.c
1551
st = WSTOPSIG(status) + 128;
bin/sh/jobs.c
515
st = WSTOPSIG(ps->status);
bin/sh/jobs.c
703
retval = WSTOPSIG(status) + 128;
lib/libutil/passwd.c
279
raise(WSTOPSIG(pstat));
sys/compat/linux/common/linux_misc.c
201
sig = WSTOPSIG(st);
tests/lib/libc/gen/t_siginfo.c
155
ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), status);
tests/lib/libc/sys/t_ptrace_sigchld.c
105
ATF_REQUIRE_EQ(WSTOPSIG(info->si_status), expected_status);
tests/lib/libc/sys/t_ptrace_threads_wait.h
886
WSTOPSIG(status));
tests/lib/libc/sys/t_ptrace_threads_wait.h
888
ATF_CHECK_EQ_MSG(info.psi_siginfo.si_signo, WSTOPSIG(status),
tests/lib/libc/sys/t_ptrace_threads_wait.h
890
WSTOPSIG(status), info.psi_siginfo.si_signo);
tests/lib/libc/sys/t_ptrace_threads_wait.h
892
if (WSTOPSIG(status) != SIGTRAP) {
tests/lib/libc/sys/t_ptrace_threads_wait.h
896
ATF_CHECK_EQ_MSG(WSTOPSIG(status), expected_sig,
tests/lib/libc/sys/t_ptrace_threads_wait.h
898
expected_sig, WSTOPSIG(status));
tests/lib/libc/sys/t_ptrace_threads_wait.h
928
signal_handle != TCSH_DISCARD && WSTOPSIG(status) != SIGTRAP
tests/lib/libc/sys/t_ptrace_threads_wait.h
929
? WSTOPSIG(status) : 0) != -1);
tests/lib/libc/sys/t_ptrace_wait.h
388
strlcpy(st, strsignal(WSTOPSIG(status)), sizeof(st));
tests/lib/libc/sys/t_ptrace_wait.h
391
ATF_REQUIRE_EQ_MSG(WSTOPSIG(status), expected,
tests/lib/libc/sys/t_ptrace_wait.h
403
FORKEE_ASSERT_EQ(WSTOPSIG(status), expected);
tests/lib/libc/sys/t_wait.c
198
ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
tests/lib/libc/sys/t_wait.c
268
ATF_REQUIRE(WIFSTOPPED(st) && WSTOPSIG(st) == SIGSTOP);
usr.bin/make/compat.c
379
status = WSTOPSIG(reason);
usr.bin/make/job.c
1977
switch (WSTOPSIG(status)) {
usr.bin/make/job.c
1988
job->node->name, WSTOPSIG(status));