Searched refs:WIFEXITED (Results 1 - 25 of 233) sorted by relevance

12345678910

/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-waitpid.h33 #undef WIFEXITED macro
39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
/macosx-10.9.5/uucp-11/uucp/unix/
H A Diswait.c43 #ifndef WIFEXITED
44 #define WIFEXITED(u) ((u).w_termsig == 0) macro
54 #ifndef WIFEXITED
55 #define WIFEXITED(i) (((i) & 0xff) == 0) macro
139 WIFEXITED (istat) ? "Exit status" : "Signal",
140 WIFEXITED (istat) ? WEXITSTATUS (istat) : WTERMSIG (istat));
142 if (WIFEXITED (istat) && WEXITSTATUS (istat) == 0)
147 if (! WIFEXITED (istat))
154 if (WIFEXITED (istat))
/macosx-10.9.5/bash-92/bash-3.2/include/
H A Dposixwait.h71 # if !defined (WIFEXITED)
72 # define WIFEXITED(s) (((s) & 0377) == 0) macro
73 # endif /* !WIFEXITED */
76 # define WIFSIGNALED(s) (!WIFSTOPPED(s) && !WIFEXITED(s))
H A Dunionwait.h90 #define WIFEXITED(x) ((x).w_stopval != WSTOPPED && (x).w_termsig == 0) macro
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsyswait.h48 #ifndef WIFEXITED
49 #define WIFEXITED(status) (WTERMSIG(status) == 0) macro
55 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
86 #define WIFEXITED(w) ((w&0377) == 0) macro
114 #undef WIFEXITED macro
129 #ifndef WIFEXITED
130 #define WIFEXITED(w) (WTERMSIG (w) == 0) macro
143 #define WIFEXITED(w) ((w) != -1) macro
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/include/ac/
H A Dwait.h31 #ifndef WIFEXITED
32 # define WIFEXITED(s) (LDAP_LO(s) == 0) macro
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Unix/
H A DUnix.h60 #ifndef WIFEXITED
61 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dwait.h58 #undef WIFEXITED macro
67 #ifndef WIFEXITED
68 #define WIFEXITED(x) (!((x)&((1<<(EXIT_BITS-1))-1))) macro
/macosx-10.9.5/vim-53/src/
H A Dos_unixx.h39 # ifndef WIFEXITED
41 # define WIFEXITED(stat_val) ((stat_val).w_T.w_Termsig == 0) macro
43 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/macosx-10.9.5/tcsh-65/tcsh/
H A Dmi.wait.h29 #define WIFEXITED(s) (__LOW(s) == 0) /* normal exit */ macro
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/testsuite/
H A Dtest-pexecute.c56 #ifndef WIFEXITED
57 #define WIFEXITED(S) (((S) & 0xff) == 0) macro
252 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_SUCCESS)
261 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_FAILURE)
299 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
300 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
317 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
318 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
335 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
336 || !WIFEXITED (statuse
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dposix_spawn.c97 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/
H A Dexec.c90 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
/macosx-10.9.5/cron-39/cron/
H A Dexterns.h107 #ifndef WIFEXITED
108 #define WIFEXITED(x) (WTERMSIG(x) == 0) macro
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSMacOSX/PreferencePane/
H A DPrivilegedOperations.c93 if (WIFEXITED(status) && WEXITSTATUS(status) == PRIV_OP_TOOL_VERS)
124 if (pid > 0 && WIFEXITED(status)) {
187 if (WIFEXITED(status))
/macosx-10.9.5/ICU-511.35/icuSources/tools/tzcode/
H A Dprivate.h97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
100 #ifndef WIFEXITED
101 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
102 #endif /* !defined WIFEXITED */
/macosx-10.9.5/Libc-997.90.3/stdtime/FreeBSD/
H A Dprivate.h114 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
117 #ifndef WIFEXITED
118 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
119 #endif /* !defined WIFEXITED */
/macosx-10.9.5/Security-55471.14.18/sec/SecurityTool/
H A Dleaks.c88 if (WIFEXITED(status))
/macosx-10.9.5/SecurityTool-55115/
H A Dleaks.c89 if (WIFEXITED(status))
/macosx-10.9.5/crontabs-51/periodic/
H A Dperiodic-wrapper.c53 if (waitpid(pid, &status, 0) != -1 && WIFEXITED(status) && WEXITSTATUS(status) == 0) {
/macosx-10.9.5/emacs-92/
H A Drunit.c43 if(WIFEXITED(status)) {
/macosx-10.9.5/kext_tools-326.95.1/
H A Dfork_program.c61 if (WIFEXITED(child_status)) {
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmail_run.c104 WIFEXITED(status) ? WEXITSTATUS(status) : 1)
/macosx-10.9.5/tcsh-65/tcsh/win32/
H A Dsignal.h113 #define WIFEXITED(a) 1 macro
/macosx-10.9.5/xnu-2422.115.4/tools/tests/execperf/
H A Drun.c80 } else if (WIFEXITED(ret)) {

Completed in 404 milliseconds

12345678910