| /onnv/onnv-gate/usr/src/cmd/csh/ |
| wait3.c | 58 static int wstat(int code, int status); 99 *status = wstat(info.si_code, info.si_status); 111 wstat(int code, int status) function
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/plugins/ |
| passprompt.c | 31 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));
|
| /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/ |
| wait4.c | 69 static int wstat(int, int); 132 *status = wstat(info.si_code, info.si_status); 143 wstat(int code, int status) function
|
| /onnv/onnv-gate/usr/src/lib/libc/port/gen/ |
| waitpid.c | 52 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);
|
| /onnv/onnv-gate/usr/src/cmd/ptools/preap/ |
| preap.c | 194 print_exit_status(pid_t pid, int wstat) 197 if (WIFSIGNALED(wstat)) { 199 int sig = WTERMSIG(wstat); 206 if (WCOREDUMP(wstat)) 209 (void) printf("exited with status %d", WEXITSTATUS(wstat)); 260 int wstat, r; local 262 retc += r = reap(*argv++, &pid, &wstat); 265 print_exit_status(pid, wstat);
|
| /onnv/onnv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/ |
| bsd-cray.c | 720 int wstat; local 736 while (waitpid(child, &wstat, 0) == -1 && errno == EINTR)
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/ |
| wait.c | 163 static int wstat(int, int); 233 *status = wstat(info.si_code, info.si_status); 245 wstat(int code, int status) function
|
| /onnv/onnv-gate/usr/src/lib/libexacct/demo/ |
| exdump.c | 282 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);
|
| /onnv/onnv-gate/usr/src/uts/common/os/ |
| exit.c | 81 wstat(int code, int data) function 103 cmn_err(CE_PANIC, "wstat: bad code"); 558 rv = wstat(why, what); 1144 r.r_val2 = wstat(info.si_code, info.si_status);
|
| /onnv/onnv-gate/usr/src/cmd/logadm/ |
| main.c | 1072 int wstat; local 1077 if (waitpid(pid, &wstat, 0) < 0) [all...] |
| /onnv/onnv-gate/usr/src/cmd/fs.d/ |
| umount.c | 922 int wstat, child, ret; local 925 if ((child = wait(&wstat)) == -1) 928 if (WIFEXITED(wstat)) /* this should always be true */ 929 ret = WEXITSTATUS(wstat);
|
| mount.c | 1433 int child, wstat; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libdtrace/common/ |
| dt_cc.c | 1598 int wstat, estat; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| jobs.c | 42 # define WIFCONTINUED(wstat) (0) 248 int nochild=0, oerrno, wstat; local 277 pid = waitpid((pid_t)-1,&wstat,flags); 286 pid = waitpid((pid_t)-1,&wstat,flags&=~WCONTINUED); 301 if (WIFCONTINUED(wstat) && wcontinued) 313 if(jp && WIFSTOPPED(wstat)) 322 if(WIFSTOPPED(wstat)) 332 pw->p_exit = WSTOPSIG(wstat); 337 else if (WIFCONTINUED(wstat) && wcontinued) 354 if (WIFSIGNALED(wstat)) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/audio/drv/audiopci/ |
| audiopci.c | 230 audiopci_ak_wait(audiopci_dev_t *dev, uint8_t wstat) 233 if (!(GET8(dev, CONC_bCODECSTAT_OFF) & wstat)) 253 uint8_t wstat; local 261 wstat = addr == CODEC_RESET_PWRD ? CONC_CSTAT_CWRIP : CONC_CSTAT_CSTAT; 264 if (audiopci_ak_wait(dev, wstat) != DDI_SUCCESS) { [all...] |
| /onnv/onnv-gate/usr/src/cmd/praudit/ |
| format.c | 1805 int rstat, wstat; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/fm/modules/common/eversholt/ |
| platform.c | 962 int wstat, count; local 969 if (waitpid(pid, &wstat, 0) < 0) 995 } else if (WIFSIGNALED(wstat)) 999 else if (WIFEXITED(wstat) && WEXITSTATUS(wstat)) [all...] |