Home
last modified time | relevance | path

Searched refs:WIFSIGNALED (Results 1 – 25 of 70) sorted by relevance

123

/dragonfly/contrib/cvs-1.12/lib/
HDwait.h24 #ifndef WIFSIGNALED
25 #define WIFSIGNALED(w) (((w) & 0xff) != 0x7f && ((w) & 0xff) != 0) macro
/dragonfly/contrib/gdb-7/gdb/common/
HDgdb_wait.h47 #ifndef WIFSIGNALED
48 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) macro
HDlinux-ptrace.c137 if (WIFSIGNALED (status)) in linux_ptrace_test_ret_to_nx()
192 if (!WIFSIGNALED (kill_status)) in linux_ptrace_test_ret_to_nx()
/dragonfly/usr.sbin/cron/cron/
HDexterns.h106 #ifndef WIFSIGNALED
107 #define WIFSIGNALED(x) (WTERMSIG(x) != 0) macro
/dragonfly/gnu/usr.bin/rcs/lib/
HDconf.h314 #undef WIFSIGNALED /* Avoid 4.3BSD incompatibility with Posix. */
316 #ifndef WIFSIGNALED
317 #define WIFSIGNALED(stat_val) ((unsigned)(stat_val) - 1 < 0377) macro
/dragonfly/contrib/lvm2/dist/test/
HDnot.c30 if (WIFSIGNALED(status)) in main()
/dragonfly/lib/libutil/
HDlogoutx.c59 if (WIFSIGNALED(status)) in logoutx()
HDlogwtmpx.c64 if (WIFSIGNALED(status)) in logwtmpx()
/dragonfly/test/testcases/mem/mmap_madvise_1/
HDmmap_madvise_1.c87 if (WIFSIGNALED(status)) { in main()
/dragonfly/contrib/tcsh-6/
HDtc.wait.h150 # define WIFSIGNALED(x) (((x).w_stopval != WSTOPPED) && ((x).w_termsig != 0)) macro
/dragonfly/contrib/less/
HDedit.c19 #if OS2 || __MVS__ || (defined WIFSIGNALED && defined WTERMSIG)
304 #if defined WIFSIGNALED && defined WTERMSIG in close_pipe()
305 if (WIFSIGNALED(status)) in close_pipe()
/dragonfly/usr.bin/pwait/
HDpwait.c132 else if (WIFSIGNALED(status)) in main()
/dragonfly/sys/sys/
HDwait.h58 #define WIFSIGNALED(x) (!WIFSTOPPED(x) && !WIFCONTINUED(x) && !WIFEXITED(x)) macro
/dragonfly/contrib/gcc-4.7/gcc/
HDgcc-ar.c102 if (WIFSIGNALED (status)) in main()
HDsystem.h354 #ifndef WIFSIGNALED
355 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) macro
/dragonfly/contrib/cvs-1.12/src/
HDrun.c335 else if (WIFSIGNALED (status)) in run_exec()
518 if (WIFSIGNALED (status)) in work_around_openssh_glitch()
/dragonfly/usr.bin/ldd/
HDldd.c183 } else if (WIFSIGNALED(status)) { in main()
/dragonfly/usr.sbin/autofs/
HDpopen.c174 if (WIFSIGNALED(status)) { in auto_pclose()
/dragonfly/contrib/gcc-8.0/gcc/
HDcollect-utils.c79 if (WIFSIGNALED (status)) in collect_wait()
/dragonfly/contrib/nvi2/ex/
HDex_shell.c170 if (WIFSIGNALED(pstat) && (!okpipe || WTERMSIG(pstat) != SIGPIPE)) { in proc_wait()
/dragonfly/usr.sbin/resident/
HDresident.c247 } else if (WIFSIGNALED(status)) { in main()
/dragonfly/usr.sbin/ppp/
HDexec.c206 } else if (WIFSIGNALED(stat)) { in exec_Create()
/dragonfly/crypto/openssh/
HDsandbox-systrace.c138 if (WIFSIGNALED(status)) in ssh_sandbox_parent()
/dragonfly/bin/sh/
HDjobs.c1110 *signaled = WIFSIGNALED(status); in waitforjob()
1123 if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGINT) in waitforjob()
1128 WIFSIGNALED(status) && WTERMSIG(status) == SIGINT) in waitforjob()
1262 if (WIFSIGNALED(sp->status)) { in dowait()
/dragonfly/usr.bin/time/
HDtime.c148 exit_on_sig = WIFSIGNALED(status) ? WTERMSIG(status) : 0; in main()

123