Symbol: WIFSIGNALED
bin/csh/proc.c
126
if (WIFSIGNALED(w)) {
bin/ksh/jobs.c
1217
&& WIFSIGNALED(status)
bin/ksh/jobs.c
1299
if (WIFSIGNALED(status))
bin/sh/jobs.c
1568
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
lib/libc/gen/arc4random.c
939
} else if (WIFSIGNALED(status)) {
lib/libpam/modules/pam_exec/pam_exec.c
141
if (WIFSIGNALED(status)) {
lib/libutil/compat/compat_logoutx.c
67
if (WIFSIGNALED(status))
lib/libutil/logoutx.c
67
if (WIFSIGNALED(status))
lib/libutil/logwtmpx.c
72
if (WIFSIGNALED(status))
lib/libutil/passwd.c
177
} else if (WIFSIGNALED(pstat)) {
libexec/ftpd/logwtmp.c
136
if (WIFSIGNALED(status))
sbin/devpubd/devpubd.c
122
} else if (WIFSIGNALED(status)) {
sbin/fsck/fsck.c
392
else if (WIFSIGNALED(status)) {
sbin/fsck/preen.c
203
if (WIFSIGNALED(status)) {
sbin/init/init.c
797
if (WIFSIGNALED(status)) {
sbin/init/init.c
897
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM &&
sbin/mount/mount.c
567
} else if (WIFSIGNALED(status)) {
sys/compat/linux/common/linux_misc.c
196
if (WIFSIGNALED(st)) {
tests/dev/sysmon/t_swwdog.c
164
ATF_REQUIRE(WIFSIGNALED(status));
tests/kernel/h_fpufork.c
59
if (WIFSIGNALED(status))
tests/kernel/t_cloexec.c
303
if (WIFSIGNALED(status)) {
tests/kernel/t_clofork.c
280
if (WIFSIGNALED(status)) {
tests/kernel/t_execregs.c
106
if (WIFSIGNALED(status)) {
tests/kernel/t_lua.c
218
ATF_REQUIRE_MSG(!WIFSIGNALED(status),
tests/kernel/t_signal_and_sp.c
135
if (WIFSIGNALED(status)) {
tests/kernel/t_zombie.c
165
ATF_REQUIRE(!WIFSIGNALED(status));
tests/kernel/t_zombie.c
191
ATF_REQUIRE(!WIFSIGNALED(status));
tests/lib/libc/gen/execve/t_execve.c
96
ATF_REQUIRE_MSG(WIFSIGNALED(status),
tests/lib/libc/gen/posix_spawn/t_spawn.c
547
ATF_REQUIRE_MSG(WIFSIGNALED(status),
tests/lib/libc/gen/t_assert.c
137
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGABRT)
tests/lib/libc/gen/t_assert.c
99
if (WIFSIGNALED(sta) != 0 || WIFEXITED(sta) == 0)
tests/lib/libc/gen/t_ctype.c
830
if (WIFSIGNALED(status)) {
tests/lib/libc/gen/t_pause.c
103
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
tests/lib/libc/gen/t_siginfo.c
156
else if (WIFSIGNALED(info->si_status))
tests/lib/libc/misc/t_ubsan.c
104
ATF_REQUIRE(WIFSIGNALED(status));
tests/lib/libc/sys/t_fork.c
187
ATF_REQUIRE(!WIFSIGNALED(status));
tests/lib/libc/sys/t_fork.c
209
ATF_REQUIRE(WIFSIGNALED(status));
tests/lib/libc/sys/t_fork.c
222
ATF_REQUIRE(!WIFSIGNALED(status));
tests/lib/libc/sys/t_fork.c
234
ATF_REQUIRE(WIFSIGNALED(status));
tests/lib/libc/sys/t_fork.c
316
ASSERT_EQ(!!WIFSIGNALED(status), false);
tests/lib/libc/sys/t_fork.c
327
ATF_REQUIRE_EQ(!!WIFSIGNALED(status), false);
tests/lib/libc/sys/t_kill.c
252
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
tests/lib/libc/sys/t_kill.c
298
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
tests/lib/libc/sys/t_kill.c
75
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i])
tests/lib/libc/sys/t_mkfifo.c
103
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
tests/lib/libc/sys/t_mkfifo.c
195
if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
tests/lib/libc/sys/t_msgrcv.c
139
if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
tests/lib/libc/sys/t_msgrcv.c
282
if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
tests/lib/libc/sys/t_msgsnd.c
110
if (WIFEXITED(sta) != 0 || WIFSIGNALED(sta) == 0)
tests/lib/libc/sys/t_msgsnd.c
248
if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
tests/lib/libc/sys/t_ptrace_sigchld.c
106
else if (WIFSIGNALED(info->si_status))
tests/lib/libc/sys/t_ptrace_wait.h
315
ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process");
tests/lib/libc/sys/t_ptrace_wait.h
328
FORKEE_ASSERTX(!WIFSIGNALED(status));
tests/lib/libc/sys/t_ptrace_wait.h
339
ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process");
tests/lib/libc/sys/t_ptrace_wait.h
348
FORKEE_ASSERTX(!WIFSIGNALED(status));
tests/lib/libc/sys/t_ptrace_wait.h
357
ATF_REQUIRE_MSG(WIFSIGNALED(status), "Reported !signaled process");
tests/lib/libc/sys/t_ptrace_wait.h
372
FORKEE_ASSERTX(WIFSIGNALED(status));
tests/lib/libc/sys/t_ptrace_wait.h
384
ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process");
tests/lib/libc/sys/t_ptrace_wait.h
400
FORKEE_ASSERTX(!WIFSIGNALED(status));
tests/lib/libc/sys/t_setrlimit.c
594
ATF_REQUIRE_MSG(WIFSIGNALED(status), "status=0x%x", status);
tests/lib/libc/sys/t_setrlimit.c
598
ATF_REQUIRE_MSG(!WIFSIGNALED(status),
tests/lib/libc/sys/t_wait.c
122
ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGTERM);
tests/lib/libc/sys/t_wait.c
158
ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGSEGV
tests/lib/libc/sys/t_wait.c
197
ATF_REQUIRE(!WIFSIGNALED(st));
tests/lib/libc/sys/t_wait.c
210
ATF_REQUIRE(!WIFSIGNALED(st));
tests/lib/libc/sys/t_wait.c
223
ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
tests/lib/libc/sys/t_wait.c
267
ATF_REQUIRE(!WIFSIGNALED(st));
tests/lib/libc/sys/t_wait.c
278
ATF_REQUIRE(!WIFSIGNALED(st));
tests/lib/libc/sys/t_wait.c
289
ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
tests/lib/libpthread/t_once.c
219
ATF_REQUIRE_MSG(!WIFSIGNALED(status),
tests/net/mcast/mcast.c
384
if (WIFSIGNALED(status)) {
tests/rump/rumpkern/h_client/h_stresscli.c
208
if (!WIFSIGNALED(status) || WTERMSIG(status) != thesig){
tests/rump/rumpkern/t_kern.c
78
ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
tests/rump/rumpkern/t_lwproc.c
205
ATF_REQUIRE(WIFSIGNALED(status));
tests/rump/rumpkern/t_signals.c
112
ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
usr.bin/diff/pr.c
109
else if (WIFSIGNALED(wstatus))
usr.bin/diff3/diff3.c
838
if (WIFSIGNALED(status))
usr.bin/make/job.c
1292
WIFSIGNALED(status)) {
usr.bin/make/main.c
1821
if (WIFSIGNALED(status))
usr.bin/progress/progress.c
264
ws = WIFSIGNALED(ws) ? WTERMSIG(ws) : WEXITSTATUS(ws);
usr.bin/pwait/pwait.c
183
else if (WIFSIGNALED(status))
usr.bin/script/script.c
240
if (WIFSIGNALED(status))
usr.bin/timeout/timeout.c
357
else if(WIFSIGNALED(pstat))
usr.bin/xargs/xargs.c
601
} else if (WIFSIGNALED (status)) {
usr.bin/xlint/xlint/xlint.c
335
if (WIFSIGNALED(status)) {
usr.sbin/autofs/automountd.c
411
if (WIFSIGNALED(status)) {
usr.sbin/autofs/popen.c
180
if (WIFSIGNALED(status)) {
usr.sbin/catman/catman.c
623
if (WIFSIGNALED(status))
usr.sbin/inetd/inetd.c
705
else if (WIFSIGNALED(status))
usr.sbin/sysinst/run.c
573
if (pid == child && (WIFEXITED(status) || WIFSIGNALED(status)))
usr.sbin/sysinst/run.c
591
if (WIFSIGNALED(status)) {
usr.sbin/syslogd/syslogd.c
4337
if (WIFSIGNALED(status)) {
usr.sbin/user/user.c
261
} else if (WIFSIGNALED(ret)) {