HomeSort by: relevance | last modified time | path
    Searched defs:WEXITSTATUS (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/external/gpl2/xcvs/dist/lib/
wait.h 40 #ifndef WEXITSTATUS
41 #define WEXITSTATUS(w) (((w) >> 8) & 0xff)
  /src/external/bsd/openldap/dist/include/ac/
wait.h 36 #ifndef WEXITSTATUS
37 # define WEXITSTATUS(s) LDAP_HI(s)
  /src/external/gpl3/gdb/dist/gnulib/import/
sys_wait.in.h 47 On nearly all systems, including Linux/x86, WEXITSTATUS are bits 15..8 and
69 # ifndef WEXITSTATUS
70 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
100 # define WEXITSTATUS(x) (x)
  /src/external/gpl3/gdb.old/dist/gnulib/import/
sys_wait.in.h 47 On nearly all systems, including Linux/x86, WEXITSTATUS are bits 15..8 and
69 # ifndef WEXITSTATUS
70 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
100 # define WEXITSTATUS(x) (x)
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_wait.h 79 #ifndef WEXITSTATUS
81 # define WEXITSTATUS(w) ((w) & ~0xC0000000)
83 # define WEXITSTATUS(w) (((w) >> 8) & 0377) /* same as WRETCODE */
97 #define WSTOPSIG WEXITSTATUS
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_wait.h 79 #ifndef WEXITSTATUS
81 # define WEXITSTATUS(w) ((w) & ~0xC0000000)
83 # define WEXITSTATUS(w) (((w) >> 8) & 0377) /* same as WRETCODE */
97 #define WSTOPSIG WEXITSTATUS
  /src/crypto/dist/ipsec-tools/src/racoon/
session.c 43 #ifndef WEXITSTATUS
44 # define WEXITSTATUS(s) ((unsigned)(s) >> 8)
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
wait-process.c 40 #define WEXITSTATUS(x) (((x) >> 8) & 0xff) /* or: (x) ?? */
49 /* On Linux, WEXITSTATUS are bits 15..8 and WTERMSIG are bits 7..0, while
59 # ifndef WEXITSTATUS
60 # define WEXITSTATUS(x) ((x).w_retcode)
70 # ifndef WEXITSTATUS
71 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
87 WEXITSTATUS(x) only if WIFEXITED(x) is true. */
397 if (WEXITSTATUS (status) == 127)
404 return WEXITSTATUS (status);
  /src/sys/sys/
wait.h 67 #define WEXITSTATUS(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
  /src/external/gpl2/groff/dist/src/roff/groff/
pipeline.c 53 #define WEXITSTATUS(s) (((s) >> 8) & 0377)
547 int exit_status = WEXITSTATUS(status);
  /src/external/gpl2/xcvs/dist/diff/
system.h 137 #ifndef WEXITSTATUS
138 #define WEXITSTATUS(stat_val) ((unsigned) (stat_val) >> 8)
  /src/external/gpl3/gdb.old/dist/libiberty/testsuite/
test-pexecute.c 59 #ifndef WEXITSTATUS
60 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
63 #define WSTOPSIG WEXITSTATUS
252 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_SUCCESS)
261 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_FAILURE)
313 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
314 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
331 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
332 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
349 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCES
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/testsuite/
test-pexecute.c 59 #ifndef WEXITSTATUS
60 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
63 #define WSTOPSIG WEXITSTATUS
252 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_SUCCESS)
261 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_FAILURE)
313 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
314 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
331 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
332 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
349 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCES
    [all...]
  /src/external/gpl2/diffutils/dist/src/
system.h 157 #ifndef WEXITSTATUS
158 # define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8)
  /src/external/bsd/libarchive/dist/libarchive/
archive_windows.h 288 #define WEXITSTATUS(sts) (sts & 0x0FF)
  /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
os.h 482 #ifndef WEXITSTATUS
484 # define WEXITSTATUS(status) ((status >> 8) & 0377)
486 # define WEXITSTATUS(status) status.w_T.w_Retcode
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
os.h 482 #ifndef WEXITSTATUS
484 # define WEXITSTATUS(status) ((status >> 8) & 0377)
486 # define WEXITSTATUS(status) status.w_T.w_Retcode
  /src/external/bsd/am-utils/dist/include/
am_defs.h 101 #ifndef WEXITSTATUS
102 # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
103 #endif /* not WEXITSTATUS */
  /src/external/gpl2/rcs/include/
conf.h 308 #ifndef WEXITSTATUS
309 #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
  /src/external/gpl3/binutils/dist/binutils/
dllwrap.c 44 #ifndef WEXITSTATUS
45 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
57 #ifndef WEXITSTATUS
58 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
421 if (WEXITSTATUS (wait_status) != 0)
423 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status));
resrc.c 48 #ifndef WEXITSTATUS
49 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
61 #ifndef WEXITSTATUS
62 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
300 if (WEXITSTATUS (wait_status) != 0)
303 WEXITSTATUS (wait_status));
  /src/external/gpl3/binutils.old/dist/binutils/
dllwrap.c 44 #ifndef WEXITSTATUS
45 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
57 #ifndef WEXITSTATUS
58 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
421 if (WEXITSTATUS (wait_status) != 0)
423 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status));
resrc.c 48 #ifndef WEXITSTATUS
49 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
61 #ifndef WEXITSTATUS
62 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
300 if (WEXITSTATUS (wait_status) != 0)
303 WEXITSTATUS (wait_status));
  /src/external/gpl3/gcc.old/dist/lto-plugin/
lto-plugin.c 64 #ifndef WEXITSTATUS
65 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
701 check (WIFEXITED (status) && WEXITSTATUS (status) == 0, LDPL_FATAL,
  /src/external/gpl2/gmake/dist/
job.c 146 # ifndef WEXITSTATUS
147 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
165 # ifndef WEXITSTATUS
166 # define WEXITSTATUS(x) ((x).w_retcode)
574 exit_code = WEXITSTATUS (status);
607 exit_code = WEXITSTATUS (status);

Completed in 45 milliseconds

1 2