Searched refs:WIFSTOPPED (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dbsd-waitpid.h34 #undef WIFSTOPPED macro
40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dgdb_wait.h53 #ifndef WIFSTOPPED
61 #define WIFSTOPPED(w) ((w)&0x40) macro
64 #define WIFSTOPPED(w) (((w)&0377) == 0177) macro
H A Dlin-lwp.c142 if (WIFSTOPPED (status))
331 && WIFSTOPPED (status) && WSTOPSIG (status));
385 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGSTOP);
402 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
433 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
667 gdb_assert (WIFSTOPPED (status));
901 if (WIFSTOPPED (lp->status) && sigismember (flush_mask, WSTOPSIG (lp->status)))
955 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
983 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
1011 && WIFSTOPPED (l
[all...]
H A Dlynx-nat.c437 if (WIFSTOPPED (status)
459 else if (WIFSTOPPED (status)
485 else if (!WIFSTOPPED (status))
/freebsd-10.1-release/contrib/tcsh/
H A Dmi.wait.h33 #define WIFSTOPPED(s) (__LOW(s) == 0177) /* stopped */ macro
H A Dtc.wait.h150 # define WIFSTOPPED(x) ((x).w_stopval == WSTOPPED)
/freebsd-10.1-release/tools/test/ptrace/
H A Dscescx.c74 if (WIFSTOPPED(status)) {
209 assert(WIFSTOPPED(status));
234 assert(WIFSTOPPED(status));
275 assert(WIFSTOPPED(status));
359 assert(WIFSTOPPED(status));
388 assert(WIFSTOPPED(status));
/freebsd-10.1-release/lib/libproc/
H A Dproc_create.c109 if (WIFSTOPPED(status) == 0)
170 if (WIFSTOPPED(status) == 0) {
H A Dproc_bkpt.c69 } else if (!WIFSTOPPED(status)) {
226 if (!WIFSTOPPED(status)) {
H A Dproc_util.c154 if (WIFSTOPPED(status))
/freebsd-10.1-release/gnu/usr.bin/gdb/gdbserver/
H A Dfbsd-low.c229 } while (WIFSTOPPED (wstat));
371 && (!WIFSTOPPED (*wstatp)
383 && WIFSTOPPED (*wstatp))
456 if (! WIFSTOPPED (wstat))
482 if (WIFSTOPPED (wstat)
496 if (WIFSTOPPED (wstat))
511 if (!WIFSTOPPED (wstat) || WSTOPSIG (wstat) != SIGTRAP)
677 else if (!WIFSTOPPED (w))
689 if (!WIFSTOPPED (w))
739 if (WIFSTOPPED (wsta
[all...]
/freebsd-10.1-release/sys/sys/
H A Dwait.h54 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED) macro
/freebsd-10.1-release/crypto/openssh/
H A Dsandbox-systrace.c119 if (!WIFSTOPPED(status)) {
/freebsd-10.1-release/release/picobsd/tinyware/passwd/
H A Dpw_util.c222 else if (WIFSTOPPED(pstat))
/freebsd-10.1-release/usr.bin/truss/
H A Dsetup.c210 if (WIFSTOPPED(waitval)) {
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dsimple_exec.c118 if(WIFSTOPPED(status))
/freebsd-10.1-release/bin/sh/
H A Djobs.c241 if (WIFSTOPPED(ps->status)) {
321 while (!WIFSTOPPED(ps->status) && ps > jp->ps)
323 if (WIFSTOPPED(ps->status))
1007 else if (WIFSTOPPED(status))
1124 else if (WIFSTOPPED(sp->status))
/freebsd-10.1-release/contrib/sendmail/include/sm/
H A Dconf.h714 # undef WIFSTOPPED macro
2335 # undef WIFSTOPPED macro
2893 # ifndef WIFSTOPPED
2894 # define WIFSTOPPED(st) (((st) & 0100) == 0) macro
2895 # endif /* ! WIFSTOPPED */
/freebsd-10.1-release/sbin/init/
H A Dinit.c751 if (wpid == pid && WIFSTOPPED(status)) {
863 if (wpid == pid && WIFSTOPPED(status)) {
1650 if (wpid == pid && WIFSTOPPED(status)) {
/freebsd-10.1-release/contrib/bmake/
H A Dcompat.c425 if (WIFSTOPPED(reason)) {
/freebsd-10.1-release/contrib/groff/src/roff/groff/
H A Dpipeline.c49 #define WIFSTOPPED(s) (((s) & 0377) == 0177) macro
/freebsd-10.1-release/lib/libutil/
H A Dpw_util.c331 } else if (WIFSTOPPED(pstat)) {
/freebsd-10.1-release/usr.bin/rlogin/
H A Drlogin.c366 if (pid < 0 || (pid == child && !WIFSTOPPED(status)))
/freebsd-10.1-release/usr.bin/su/
H A Dsu.c457 if (WIFSTOPPED(statusp)) {
/freebsd-10.1-release/usr.sbin/ppp/
H A Dexec.c365 } else if (WIFSTOPPED(stat)) {

Completed in 167 milliseconds

12