Home | History | Annotate | Download | only in timeout

Lines Matching defs:pstat

189 	int error, pstat, status;
314 pstat = status;
350 while (cpid != pid && wait(&pstat) == -1) {
355 if (WEXITSTATUS(pstat))
356 pstat = WEXITSTATUS(pstat);
357 else if(WIFSIGNALED(pstat))
358 pstat = 128 + WTERMSIG(pstat);
361 pstat = EXIT_TIMEOUT;
363 return (pstat);