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

12

/freebsd-9.3-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-9.3-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-9.3-release/contrib/cvs/lib/
H A Dwait.h21 #ifndef WIFSTOPPED
22 #define WIFSTOPPED(w) (((w) & 0xff) == 0x7f) macro
/freebsd-9.3-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-9.3-release/lib/libproc/test/t1-bkpt/
H A Dt1-bkpt.c55 assert(WIFSTOPPED(proc_wstatus(phdl)));
/freebsd-9.3-release/lib/libproc/
H A Dproc_create.c77 if (WIFSTOPPED(status) == 0)
138 if (WIFSTOPPED(status) == 0) {
H A Dproc_bkpt.c70 } else if (!WIFSTOPPED(status)) {
221 if (!WIFSTOPPED(status)) {
H A Dproc_util.c152 if (WIFSTOPPED(status))
/freebsd-9.3-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-9.3-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-9.3-release/sys/sys/
H A Dwait.h54 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED) macro
/freebsd-9.3-release/bin/sh/
H A Djobs.c239 if (WIFSTOPPED(ps->status)) {
325 while (!WIFSTOPPED(ps->status) && ps > jp->ps)
327 if (WIFSTOPPED(ps->status))
488 else if (WIFSTOPPED(status))
987 else if (WIFSTOPPED(status))
1032 (pid > 0 && WIFSTOPPED(status) && !iflag));
1061 else if (WIFSTOPPED(sp->status))
/freebsd-9.3-release/crypto/openssh/
H A Dsandbox-systrace.c119 if (!WIFSTOPPED(status)) {
/freebsd-9.3-release/release/picobsd/tinyware/passwd/
H A Dpw_util.c222 else if (WIFSTOPPED(pstat))
/freebsd-9.3-release/usr.bin/truss/
H A Dsetup.c210 if (WIFSTOPPED(waitval)) {
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dsimple_exec.c121 if(WIFSTOPPED(status))
/freebsd-9.3-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-9.3-release/sbin/init/
H A Dinit.c769 if (wpid == pid && WIFSTOPPED(status)) {
886 if (wpid == pid && WIFSTOPPED(status)) {
1682 if (wpid == pid && WIFSTOPPED(status)) {
/freebsd-9.3-release/contrib/bmake/
H A Dcompat.c425 if (WIFSTOPPED(reason)) {
/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dpipeline.c49 #define WIFSTOPPED(s) (((s) & 0377) == 0177) macro
/freebsd-9.3-release/lib/libutil/
H A Dpw_util.c334 } else if (WIFSTOPPED(pstat)) {
/freebsd-9.3-release/usr.bin/rlogin/
H A Drlogin.c366 if (pid < 0 || (pid == child && !WIFSTOPPED(status)))

Completed in 294 milliseconds

12