Home | History | Annotate | Download | only in base

Lines Matching defs:exit_code

73     int exit_code = 0;
75 exit_code |= EXIT_FLAG_CHDIR_ERRORS;
80 exit_code |= EXIT_FLAG_FDWALK_ERRORS;
83 exit_code |= EXIT_FLAG_CLOSE_ERRORS;
93 exit_code |= EXIT_FLAG_SECOND_FORK_FAILED;
94 _exit(exit_code); // if second fork failed
108 _exit(exit_code);
128 int exit_code = WEXITSTATUS(status);
129 if (exit_code & EXIT_FLAG_CHDIR_ERRORS) {
133 if (exit_code & EXIT_FLAG_FDWALK_ERRORS) {
136 if (exit_code & EXIT_FLAG_CLOSE_ERRORS) {
140 if (exit_code & EXIT_FLAG_SECOND_FORK_FAILED) {