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

123456

/freebsd-9.3-release/crypto/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)
/freebsd-9.3-release/contrib/cvs/lib/
H A Dwait.h27 #ifndef WIFEXITED
28 #define WIFEXITED(w) (((w) & 0xff) == 0) macro
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_wait.h45 #ifndef WIFEXITED
46 #define WIFEXITED(w) (((w)&0377) == 0) macro
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DUnix.h58 #ifndef WIFEXITED
59 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/freebsd-9.3-release/contrib/tcsh/
H A Dmi.wait.h29 #define WIFEXITED(s) (__LOW(s) == 0) /* normal exit */ macro
/freebsd-9.3-release/tools/regression/lib/libc/gen/
H A Dtest-posix_spawn.c66 assert(WIFEXITED(status) && WEXITSTATUS(status) == 42);
79 assert(WIFEXITED(status) && WEXITSTATUS(status) == 127);
/freebsd-9.3-release/tools/regression/posixsem2/
H A Dsemtest.c44 if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
84 if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
/freebsd-9.3-release/contrib/gcclibs/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...]
/freebsd-9.3-release/usr.sbin/cron/cron/
H A Dexterns.h109 #ifndef WIFEXITED
110 #define WIFEXITED(x) (WTERMSIG(x) == 0) macro
/freebsd-9.3-release/contrib/opie/
H A Dpopen.c208 #if defined(WEXITSTATUS) && defined(WIFEXITED)
209 if ((pid > 0) && WIFEXITED(status))
213 #else /* defined(WEXITSTATUS) && defined(WIFEXITED) */
215 #endif /* defined(WEXITSTATUS) && defined(WIFEXITED) */
/freebsd-9.3-release/contrib/tzcode/stdtime/
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 */
/freebsd-9.3-release/tools/test/posixshm/
H A Dshm_test.c132 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
135 } else if (WIFEXITED(status)) {
/freebsd-9.3-release/tools/regression/security/cap_test/
H A Dcap_test.c108 if (WIFEXITED(status))
H A Dcap_test_pdfork.c107 if ((success == PASSED) && WIFEXITED(status))
H A Dcap_test_pdkill.c95 if ((success == PASSED) && WIFEXITED(status))
/freebsd-9.3-release/contrib/sendmail/include/sm/
H A Dconf.h504 # undef WIFEXITED macro
713 # undef WIFEXITED macro
1098 # undef WIFEXITED macro
1168 # undef WIFEXITED macro
1311 # undef WIFEXITED macro
1412 # undef WIFEXITED macro
1610 # undef WIFEXITED macro
1632 # undef WIFEXITED macro
1650 # undef WIFEXITED macro
1674 /* Have to redefine WIFEXITED t
1675 # undef WIFEXITED macro
1676 # define WIFEXITED macro
1958 # undef WIFEXITED macro
2160 # undef WIFEXITED macro
2181 # undef WIFEXITED macro
2228 # undef WIFEXITED macro
2257 # undef WIFEXITED macro
2333 # undef WIFEXITED macro
2891 # define WIFEXITED macro
[all...]
/freebsd-9.3-release/contrib/cvs/diff/
H A Dsystem.h140 #ifndef WIFEXITED
141 #define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/freebsd-9.3-release/release/picobsd/tinyware/passwd/
H A Dpw_util.c189 if (pid == -1 || !WIFEXITED(pstat) || WEXITSTATUS(pstat) != 0)
224 else if (WIFEXITED(pstat) && errno == 0)
/freebsd-9.3-release/bin/pwait/
H A Dpwait.c129 if (WIFEXITED(status))
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c127 if (WIFEXITED(status)) {
/freebsd-9.3-release/sys/sys/
H A Dwait.h58 #define WIFEXITED(x) (_WSTATUS(x) == 0) macro
/freebsd-9.3-release/tools/regression/sigqueue/sigqtest2/
H A Dsigqtest2.c30 if (!WIFEXITED(status))
31 errx(1, "!WIFEXITED(status)");
/freebsd-9.3-release/tools/test/ptrace/
H A Dscescx.c56 if (WIFEXITED(status)) {
205 if (WIFEXITED(status) || WIFSIGNALED(status)) {
230 if (WIFEXITED(status) || WIFSIGNALED(status)) {
271 if (WIFEXITED(status) || WIFSIGNALED(status)) {
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Dconf.h306 #undef WIFEXITED /* Avoid 4.3BSD incompatibility with Posix. */ macro
308 #ifndef WIFEXITED
309 #define WIFEXITED(stat_val) (((stat_val) & 0377) == 0) macro
/freebsd-9.3-release/contrib/lukemftpd/src/
H A Dlogwtmp.c135 if (WIFEXITED(status))

Completed in 170 milliseconds

123456