Lines Matching refs:status
64 int status = 1;
77 : "+m" (xmm0), "+r" (status)
80 if (status) {
85 exit(status);
102 int status;
181 SAFE_WAITPID(pid, &status, 0);
182 if (WIFEXITED(status)) {
184 pid, WEXITSTATUS(status));
186 if (WIFSIGNALED(status)) {
188 pid, WTERMSIG(status));
193 SAFE_WAIT(&status);
194 okay &= (WIFEXITED(status) && WEXITSTATUS(status) == 0);