Home
last modified time | relevance | path

Searched refs:WEXITSTATUS (Results 1 – 7 of 7) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/testsuite/
Dtest-pexecute.c59 #ifndef WEXITSTATUS
60 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8) macro
63 #define WSTOPSIG WEXITSTATUS
252 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_SUCCESS) in main()
261 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_FAILURE) in main()
299 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS in main()
300 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS) in main()
317 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS in main()
318 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS) in main()
335 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS in main()
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Ddllwrap.c44 #ifndef WEXITSTATUS
45 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro
57 #ifndef WEXITSTATUS
58 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro
420 if (WEXITSTATUS (wait_status) != 0) in run()
422 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status)); in run()
Ddlltool.c291 #ifndef WEXITSTATUS
292 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro
304 #ifndef WEXITSTATUS
305 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro
1378 if (WEXITSTATUS (wait_status) != 0) in run()
1381 what, WEXITSTATUS (wait_status)); in run()
Dresrc.c48 #ifndef WEXITSTATUS
49 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro
61 #ifndef WEXITSTATUS
62 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro
297 if (WEXITSTATUS (wait_status) != 0) in run_cmd()
300 WEXITSTATUS (wait_status)); in run_cmd()
Dconfigure12605 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
/toolchain/binutils/binutils-2.25/libiberty/
Dconfigure5039 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
/toolchain/binutils/binutils-2.25/include/
DChangeLog-91032068 * wait.h (WEXITSTATUS, WSTOPSIG): Mask down to 8 bits. This is