Lines Matching refs:status
518 int ret, status;
553 while((child_pid = waitpid(pid, &status, 0)) > 0) {
554 if (WIFEXITED(status)) {
555 ret = WEXITSTATUS(status);
558 "command [%s] returned nonzero status %d.\n",
563 } else if (WIFSIGNALED(status)) {
566 userdel_cmd, WTERMSIG(status));
569 } else if (WIFSTOPPED(status)) {
572 userdel_cmd, WSTOPSIG(status));
575 DEBUG(SSSDBG_CRIT_FAILURE, "Unknown status from WAITPID\n");