Searched refs:WEXITSTATUS (Results 1 – 7 of 7) sorted by relevance
59 #ifndef WEXITSTATUS60 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8) macro63 #define WSTOPSIG WEXITSTATUS252 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 …]
44 #ifndef WEXITSTATUS45 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro57 #ifndef WEXITSTATUS58 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro420 if (WEXITSTATUS (wait_status) != 0) in run()422 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status)); in run()
291 #ifndef WEXITSTATUS292 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro304 #ifndef WEXITSTATUS305 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro1378 if (WEXITSTATUS (wait_status) != 0) in run()1381 what, WEXITSTATUS (wait_status)); in run()
48 #ifndef WEXITSTATUS49 #define WEXITSTATUS(w) (((w) >> 8) & 0377) macro61 #ifndef WEXITSTATUS62 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8) macro297 if (WEXITSTATUS (wait_status) != 0) in run_cmd()300 WEXITSTATUS (wait_status)); in run_cmd()
12605 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
5039 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
2068 * wait.h (WEXITSTATUS, WSTOPSIG): Mask down to 8 bits. This is