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

123

/macosx-10.10/OpenSSH-189/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))
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dposixwait.h67 # if !defined (WIFSTOPPED)
68 # define WIFSTOPPED(s) (((s) & 0177) == 0177) macro
69 # endif /* !WIFSTOPPED */
76 # define WIFSIGNALED(s) (!WIFSTOPPED(s) && !WIFEXITED(s))
H A Dunionwait.h89 #define WIFSTOPPED(x) ((x).w_stopval == WSTOPPED) macro
/macosx-10.10/emacs-93/emacs/src/
H A Dsyswait.h51 #ifndef WIFSTOPPED
52 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) macro
55 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
84 #define WIFSTOPPED(w) ((w&0377) == 0177) macro
112 #undef WIFSTOPPED macro
123 #ifndef WIFSTOPPED
124 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177) macro
141 #define WIFSTOPPED(w) 0 macro
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dwait.h43 #ifndef WIFSTOPPED
44 # define WIFSTOPPED(s) (LDAP_LO(s) == 0177 && LDAP_HI(s) != 0) macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dwait.h62 #undef WIFSTOPPED macro
83 #ifndef WIFSTOPPED
84 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/macosx-10.10/tcsh-65/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)
/macosx-10.10/tcl-105/tcl/tcl/compat/
H A Dwaitpid.c96 if (!(options & WUNTRACED) && (WIFSTOPPED(waitPtr->status))) {
142 if (!(options & WUNTRACED) && (WIFSTOPPED(status))) {
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dwaitpid.c101 if (!(options & WUNTRACED) && (WIFSTOPPED(waitPtr->status))) {
147 if (!(options & WUNTRACED) && (WIFSTOPPED(status))) {
/macosx-10.10/emacs-93/
H A Drunit.c37 if(WIFSTOPPED(status))
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dsignal.h119 #define WIFSTOPPED(a) 0 macro
/macosx-10.10/xnu-2782.1.97/tools/tests/execperf/
H A Drun.c78 } else if (WIFSTOPPED(ret)) {
/macosx-10.10/procmail-14/procmail/src/
H A Dcommon.c62 while(pid!=(j=wait(&i))||WIFSTOPPED(i))
H A Dincludes.h61 #include <sys/wait.h> /* wait() waitpid() WIFEXITED() WIFSTOPPED()
261 #ifdef WIFSTOPPED
262 #undef WIFSTOPPED macro
275 #ifndef WIFSTOPPED
276 #define WIFSTOPPED(waitval) (((waitval)&255)==127) macro
/macosx-10.10/system_cmds-643.1.1/vifs.tproj/
H A Dvifs.c110 else if (WIFSTOPPED(x))
/macosx-10.10/uucp-11/uucp/contrib/
H A DdialHDB.c146 if(WIFSTOPPED(stat))
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dwait.h151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13) macro
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixPort.h210 #ifndef WIFSTOPPED
211 # define WIFSTOPPED(stat) (((*((int *) &(stat))) & 0xff) == 0177) macro
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinPort.h270 #ifndef WIFSTOPPED
271 # define WIFSTOPPED(stat) 0 macro
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinPort.h248 #ifndef WIFSTOPPED
249 # define WIFSTOPPED(stat) 0 macro
/macosx-10.10/ruby-106/ruby/ext/pty/
H A Dpty.c28 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) macro
615 #if defined(WIFSTOPPED)
617 #define WIFSTOPPED(status) IF_STOPPED(status) macro
619 ---->> Either IF_STOPPED or WIFSTOPPED is needed <<----
620 #endif /* WIFSTOPPED | IF_STOPPED */
621 if (WIFSTOPPED(status)) { /* suspend */
/macosx-10.10/zsh-61/zsh/Src/
H A Dzsh_system.h348 # undef WIFSTOPPED macro
368 #ifndef WIFSTOPPED
369 # define WIFSTOPPED(X) (((X)&0377)==0177) macro
/macosx-10.10/OpenSSH-189/openssh/
H A Dsandbox-systrace.c117 if (!WIFSTOPPED(status)) {
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Djobs.h62 #define PSTOPPED(p) (WIFSTOPPED((p)->status))

Completed in 243 milliseconds

123