Lines Matching refs:status
271 /* Set status pipe to close on exec(). That way parent will know that exec() succeeded. */
300 /* Check status. */
375 int status = 0;
377 if (waitpid(process->pid, &status, WNOHANG) == 0)
378 return DE_TRUE; /* No status available. */
380 if (WIFEXITED(status) || WIFSIGNALED(status))
395 int status = 0;
405 while ((waitResult = waitpid(process->pid, &status, 0)) != process->pid)
414 if (!WIFEXITED(status) && !WIFSIGNALED(status))
420 process->exitCode = WEXITSTATUS(status);