Lines Matching refs:status
520 int ret, status;
555 while((child_pid = waitpid(pid, &status, 0)) > 0) {
556 if (WIFEXITED(status)) {
557 ret = WEXITSTATUS(status);
560 "command [%s] returned nonzero status %d.\n",
565 } else if (WIFSIGNALED(status)) {
568 userdel_cmd, WTERMSIG(status));
571 } else if (WIFSTOPPED(status)) {
574 userdel_cmd, WSTOPSIG(status));
577 DEBUG(SSSDBG_CRIT_FAILURE, "Unknown status from WAITPID\n");