Searched defs:wstat (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppd/plugins/
H A Dpassprompt.c31 int readgood, wstat; local
100 while (waitpid(kid, &wstat, 0) < 0) {
111 if (!WIFEXITED(wstat))
113 if (WEXITSTATUS(wstat) != 0)
114 warn("%s exited with code %d", promptprog, WEXITSTATUS(wstat));
/osnet-11/usr/src/lib/libc/port/gen/
H A Dwaitpid.c52 wstat(int code, int status) function
105 *stat_loc = wstat(info.si_code, info.si_status);
180 *stat_loc = wstat(info.si_code, info.si_status);
/osnet-11/usr/src/lib/libexacct/demo/
H A Dexdump.c282 int wstat = o->eo_item.ei_uint32; local
285 if (WIFEXITED(wstat))
287 WEXITSTATUS(wstat));
288 else if (WIFSIGNALED(wstat))
290 WTERMSIG(wstat));
292 (void) printf("%d", wstat);
294 (void) printf("%d", wstat);
/osnet-11/usr/src/lib/brand/solaris10/s10_brand/common/
H A Ds10_signal.c569 wstat(int code, int status) function
608 rval->sys_rval2 = wstat(info.si_code, info.si_status);
/osnet-11/usr/src/lib/libshell/common/sh/
H A Djobs.c42 # define WIFCONTINUED(wstat) (0)
327 int nochild=0, oerrno, wstat; local
378 wstat = cjp->status <<8;
380 wstat = cjp->status-256;
389 pid = waitpid((pid_t)-1,&wstat,flags);
401 pid = waitpid((pid_t)-1,&wstat,flags&=~WCONTINUED);
419 if (WIFCONTINUED(wstat) && wcontinued)
431 if(jp && WIFSTOPPED(wstat))
440 if (WIFCONTINUED(wstat) && wcontinued)
442 else if(WIFSTOPPED(wstat))
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_cc.c1595 int wstat, estat; local
1678 } while (waitpid(pid, &wstat, 0) == -1 && errno == EINTR);
1683 dt_dprintf("%s returned exit status 0x%x\n", dtp->dt_cpp_path, wstat);
1684 estat = WIFEXITED(wstat) ? WEXITSTATUS(wstat) : -1;

Completed in 82 milliseconds