Home | History | Annotate | Download | only in ssh

Lines Matching defs:cstat

86 void print_termsig(FILE *fp, int cstat);
204 int i, argc, exitcode, cpid, cstat;
262 while ((cpid = waitpid(0, &cstat, WNOHANG)) > 0) {
265 if (WTERMSIG(cstat)) {
266 print_termsig(stderr, cstat);
269 WEXITSTATUS(cstat));
420 int pid, cstat;
508 if (waitpid(pid, &cstat, 0) < 0) {
512 if (WTERMSIG(cstat)) {
513 print_termsig(stderr, cstat);
515 return WEXITSTATUS(cstat);
580 print_termsig(FILE *fp, int cstat)
583 WTERMSIG(cstat));
584 if (WCOREDUMP(cstat))