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

123

/macosx-10.9.5/OpenSSH-186/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.9.5/bash-92/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.9.5/emacs-92/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.9.5/OpenLDAP-491.1/OpenLDAP/include/ac/
H A Dwait.h43 #ifndef WIFSTOPPED
44 # define WIFSTOPPED(s) (LDAP_LO(s) == 0177 && LDAP_HI(s) != 0) macro
/macosx-10.9.5/ksh-20/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.9.5/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.9.5/tcl-102/tcl/tcl/compat/
H A Dwaitpid.c96 if (!(options & WUNTRACED) && (WIFSTOPPED(waitPtr->status))) {
142 if (!(options & WUNTRACED) && (WIFSTOPPED(status))) {
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dwaitpid.c101 if (!(options & WUNTRACED) && (WIFSTOPPED(waitPtr->status))) {
147 if (!(options & WUNTRACED) && (WIFSTOPPED(status))) {
/macosx-10.9.5/emacs-92/
H A Drunit.c37 if(WIFSTOPPED(status))
/macosx-10.9.5/tcsh-65/tcsh/win32/
H A Dsignal.h119 #define WIFSTOPPED(a) 0 macro
/macosx-10.9.5/xnu-2422.115.4/tools/tests/execperf/
H A Drun.c78 } else if (WIFSTOPPED(ret)) {
/macosx-10.9.5/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.9.5/system_cmds-597.90.1/system_cmds-597.1.1/vifs.tproj/
H A Dvifs.c110 else if (WIFSTOPPED(x))
/macosx-10.9.5/system_cmds-597.90.1/vifs.tproj/
H A Dvifs.c110 else if (WIFSTOPPED(x))
/macosx-10.9.5/uucp-11/uucp/contrib/
H A DdialHDB.c146 if(WIFSTOPPED(stat))
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dwait.h151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13) macro
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixPort.h210 #ifndef WIFSTOPPED
211 # define WIFSTOPPED(stat) (((*((int *) &(stat))) & 0xff) == 0177) macro
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinPort.h270 #ifndef WIFSTOPPED
271 # define WIFSTOPPED(stat) 0 macro
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinPort.h248 #ifndef WIFSTOPPED
249 # define WIFSTOPPED(stat) 0 macro
/macosx-10.9.5/ruby-104/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.9.5/zsh-60/zsh/Src/
H A Dzsh_system.h348 # undef WIFSTOPPED macro
368 #ifndef WIFSTOPPED
369 # define WIFSTOPPED(X) (((X)&0377)==0177) macro
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsandbox-systrace.c117 if (!WIFSTOPPED(status)) {

Completed in 131 milliseconds

123