Symbol: WTERMSIG
bin/csh/proc.c
126
if (WTERMSIG(w) == SIGINT)
bin/csh/proc.c
132
pp->p_reason = WTERMSIG(w);
bin/ksh/jobs.c
1084
(sigtraps[WTERMSIG(status)].flags & TF_TTY_INTR))
bin/ksh/jobs.c
1085
trapsig(WTERMSIG(status));
bin/ksh/jobs.c
1102
status = 128 + WTERMSIG(p->status);
bin/ksh/jobs.c
1231
j->status = 128 + WTERMSIG(j->last_proc->status);
bin/ksh/jobs.c
1360
(WTERMSIG(p->status) == SIGINT ||
bin/ksh/jobs.c
1361
WTERMSIG(p->status) == SIGPIPE)) {
bin/ksh/jobs.c
1364
strlcpy(buf, sigtraps[WTERMSIG(p->status)].mess,
libexec/ld.so/ldd/ldd.c
202
if (WTERMSIG(status) == SIGINT)
libexec/ld.so/ldd/ldd.c
205
WTERMSIG(status));
libexec/spamd/grey.c
223
WTERMSIG(status));
regress/bin/ksh/edit/edit.c
152
if (WIFSIGNALED(status) && WTERMSIG(status) != SIGHUP) {
regress/bin/ksh/edit/edit.c
153
warnx("%s: terminated by signal %d", *argv, WTERMSIG(status));
regress/bin/ksh/edit/edit.c
154
ret = 128 + WTERMSIG(status);
regress/lib/libc/malloc/malloc_errs/malloc_errs.c
319
WTERMSIG(status) != SIGABRT)
regress/lib/libc/sys/t_fork.c
211
ATF_REQUIRE_EQ(WTERMSIG(status), sig);
regress/lib/libc/sys/t_fork.c
236
ATF_REQUIRE_EQ(WTERMSIG(status), SIGKILL);
regress/lib/libc/sys/t_kill.c
253
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
regress/lib/libc/sys/t_kill.c
299
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
regress/lib/libc/sys/t_kill.c
76
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i])
regress/lib/libc/sys/t_mkfifo.c
104
if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != SIGKILL)
regress/lib/libc/sys/t_mkfifo.c
196
if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
regress/lib/libc/sys/t_msgrcv.c
283
if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
regress/lib/libpthread/cancel_wait/cancel_wait.c
106
ASSERT(WTERMSIG(status) == 9);
regress/lib/libpthread/earlysig/earlysig.c
83
else if (WTERMSIG(status) == SIGKILL)
regress/lib/libpthread/earlysig/earlysig.c
85
errx(1, "child killed by signal %d", WTERMSIG(status));
regress/sys/dev/kcov/kcov.c
360
warnx("terminated by signal (%d)", WTERMSIG(status));
regress/sys/dev/kcov/kcov.c
429
warnx("terminated by signal (%d)", WTERMSIG(status));
regress/sys/dev/wscons/sigio.c
152
errx(1, "child killed by signal %d", WTERMSIG(status));
regress/sys/kern/fork-exit/fork-exit.c
204
if(WTERMSIG(status) != SIGTERM)
regress/sys/kern/fork-exit/fork-exit.c
205
errx(1, "child %d signal %d", pid, WTERMSIG(status));
regress/sys/kern/main-thread-exited/main-thread-exited.c
42
exit(! WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL);
regress/sys/kern/pipe/pipe.c
102
return WTERMSIG(status);
regress/sys/kern/pledge/generic/manager.c
294
int signal = WTERMSIG(status);
regress/sys/kern/pledge/sendrecvfd/sendrecvfd.c
266
WTERMSIG(status));
regress/sys/kern/pty/ptyhog.c
104
exit(WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status) + 128);
regress/sys/kern/setuid/setgid_child.c
41
WTERMSIG(status));
regress/sys/kern/setuid/setuid_child.c
41
WTERMSIG(status));
regress/sys/kern/signal/sig-stop3/sig-stop3.c
102
if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL)
regress/sys/kern/unveil/syscalls.c
871
errx(1, "child exited with signal %d", WTERMSIG(status));
regress/sys/kern/unveil/unveil.h
67
WTERMSIG(status));
regress/sys/kern/unveil/unveil.h
79
WTERMSIG(status));
regress/sys/uvm/vnode/test-deadlock.c
79
return 128 + WTERMSIG(status);
sbin/dhcp6leased/dhcp6leased.c
362
"frontend", WTERMSIG(status));
sbin/dhcpleased/dhcpleased.c
377
"frontend", WTERMSIG(status));
sbin/fsck/fsck.c
352
warnx("%s: %s", spec, strsignal(WTERMSIG(status)));
sbin/fsck/preen.c
177
WTERMSIG(status));
sbin/iked/iked.c
394
WTERMSIG(status));
sbin/iked/proc.c
397
WTERMSIG(status));
sbin/init/init.c
641
if (WTERMSIG(status) == SIGKILL) {
sbin/init/init.c
723
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM &&
sbin/mount/mount.c
456
warnx("%s: %s", name, strsignal(WTERMSIG(status)));
sbin/newfs/newfs.c
727
strsignal(WTERMSIG(status)));
sbin/quotacheck/quotacheck.c
363
warnx("%s: %s", fsname, strsignal(WTERMSIG(status)));
sbin/slaacd/slaacd.c
330
"frontend", WTERMSIG(status));
sbin/unwind/unwind.c
335
"frontend", WTERMSIG(status));
usr.bin/awk/run.c
2169
estatus = WTERMSIG(status) + 256;
usr.bin/make/engine.c
553
job->code = WTERMSIG(status); /* signaled */
usr.bin/mg/grep.c
236
WTERMSIG(ret), timestr);
usr.bin/ssh/misc.c
2209
error("%s %s exited on signal %d", tag, cmd, WTERMSIG(status));
usr.bin/ssh/monitor.c
333
(long)pmonitor->m_pid, WTERMSIG(status));
usr.bin/ssh/monitor_wrap.c
137
WTERMSIG(status));
usr.bin/ssh/monitor_wrap.c
138
cleanup_exit(signal_is_crash(WTERMSIG(status)) ?
usr.bin/ssh/session.c
2031
if ((r = sshpkt_put_cstring(ssh, sig2name(WTERMSIG(status)))) != 0 ||
usr.bin/ssh/session.c
2037
xasprintf(&note, "signal %d%s", WTERMSIG(status),
usr.bin/ssh/sshd.c
347
if ((was_crash = signal_is_crash(WTERMSIG(child->status))))
usr.bin/ssh/sshd.c
351
WTERMSIG(child->status), child_status);
usr.bin/time/time.c
96
exitonsig = WTERMSIG(status);
usr.bin/timeout/timeout.c
331
pstat = 128 + WTERMSIG(pstat);
usr.bin/tmux/cmd-run-shell.c
261
retcode = WTERMSIG(status);
usr.bin/tmux/format.c
2067
name = sig2name(WTERMSIG(wp->status));
usr.bin/tmux/popup.c
701
pd->status = WTERMSIG(status);
usr.bin/vi/ex/ex_shell.c
166
if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) {
usr.bin/vi/ex/ex_shell.c
172
strsignal(WTERMSIG(pstat)),
usr.bin/xargs/xargs.c
588
if (WTERMSIG(status) != SIGPIPE) {
usr.bin/xargs/xargs.c
589
if (WTERMSIG(status) < NSIG)
usr.bin/xargs/xargs.c
591
sys_signame[WTERMSIG(status)]);
usr.bin/xargs/xargs.c
594
name, WTERMSIG(status));
usr.sbin/acme-client/util.c
239
cp = strsignal(WTERMSIG(c));
usr.sbin/acme-client/util.c
274
cp = strsignal(WTERMSIG(c));
usr.sbin/amd/amd/sched.c
204
(long)pid, WTERMSIG(w));
usr.sbin/amd/amd/sched.c
259
WIFSIGNALED(p->w) ? WTERMSIG(p->w) : 0,
usr.sbin/bgpd/bgpd.c
508
WTERMSIG(status));
usr.sbin/bgplgd/slowcgi.c
566
c->command_status = WTERMSIG(status);
usr.sbin/dvmrpd/dvmrpd.c
300
"dvmrp engine", WTERMSIG(status));
usr.sbin/eigrpd/eigrpd.c
308
"eigrp engine", WTERMSIG(status));
usr.sbin/httpd/proc.c
370
WTERMSIG(status));
usr.sbin/inetd/inetd.c
531
sep->se_server, WTERMSIG(status));
usr.sbin/ldapd/ldapd.c
98
pid, WTERMSIG(status));
usr.sbin/ldpd/ldpd.c
315
"ldp engine", WTERMSIG(status));
usr.sbin/lpd/lpd.c
238
(int)pid, WTERMSIG(status));
usr.sbin/lpd/printer.c
1253
WEXITSTATUS(status), WTERMSIG(status));
usr.sbin/lpd/printer.c
721
log_warn("filter terminated (termsig=%d)", WTERMSIG(status));
usr.sbin/lpr/lpd/printjob.c
723
printer, WEXITSTATUS(status), WTERMSIG(status));
usr.sbin/lpr/lpd/printjob.c
774
printer, format, WTERMSIG(status));
usr.sbin/npppd/npppd/npppd.c
1972
WTERMSIG(status));
usr.sbin/ntpd/constraint.c
477
sig = WTERMSIG(status);
usr.sbin/ospf6d/ospf6d.c
323
"ospf engine", WTERMSIG(status));
usr.sbin/ospfd/ospfd.c
339
"ospf engine", WTERMSIG(status));
usr.sbin/pppd/main.c
1195
(int)pid, WTERMSIG(status));
usr.sbin/rad/rad.c
321
"frontend", WTERMSIG(status));
usr.sbin/radiusd/radiusd.c
942
(int)pid, WTERMSIG(status));
usr.sbin/radiusd/radiusd.c
955
WTERMSIG(status));
usr.sbin/relayd/proc.c
370
WTERMSIG(status));
usr.sbin/ripd/ripd.c
296
"rip engine", WTERMSIG(status));
usr.sbin/rpki-client/main.c
1521
warnx("%s terminated signal %d", name, WTERMSIG(st));
usr.sbin/rpki-client/rsync.c
219
warnx("rsync %s terminated; signal %d", s->uri, WTERMSIG(st));
usr.sbin/rpki-client/rsync.c
220
if (!s->term_sent || WTERMSIG(st) != SIGTERM)
usr.sbin/slowcgi/slowcgi.c
543
c->script_status = WTERMSIG(status);
usr.sbin/smtpd/smtpd.c
367
WTERMSIG(status));
usr.sbin/smtpd/smtpd.c
417
WTERMSIG(status) == SIGALRM) {
usr.sbin/smtpd/smtpd.c
427
WTERMSIG(status) == SIGTERM) {
usr.sbin/snmpd/proc.c
369
WTERMSIG(status));
usr.sbin/snmpd/snmpd.c
280
"signal %d", pname, WTERMSIG(status));
usr.sbin/snmpd/snmpd.c
77
WTERMSIG(status));
usr.sbin/snmpd/traphandler.c
396
child, WTERMSIG(status));
usr.sbin/user/user.c
267
ret = WTERMSIG(status);
usr.sbin/vmd/proc.c
276
WTERMSIG(status));
usr.sbin/ypldap/ypldap.c
85
"signal %d", pname, WTERMSIG(status));