Home | History | Annotate | Download | only in base

Lines Matching refs:exit_code

56     int exit_code = 0;
58 exit_code |= EXIT_FLAG_CHDIR_ERRORS;
63 exit_code |= EXIT_FLAG_FDWALK_ERRORS;
66 exit_code |= EXIT_FLAG_CLOSE_ERRORS;
76 exit_code |= EXIT_FLAG_SECOND_FORK_FAILED;
77 _exit(exit_code); // if second fork failed
91 _exit(exit_code);
111 int exit_code = WEXITSTATUS(status);
112 if (exit_code & EXIT_FLAG_CHDIR_ERRORS) {
116 if (exit_code & EXIT_FLAG_FDWALK_ERRORS) {
119 if (exit_code & EXIT_FLAG_CLOSE_ERRORS) {
123 if (exit_code & EXIT_FLAG_SECOND_FORK_FAILED) {