Searched defs:stat_loc (Results 1 - 2 of 2) sorted by relevance
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | waitpid.c | 78 waitpid(pid_t pid, int *stat_loc, int options) argument 104 if (stat_loc) 105 *stat_loc = wstat(info.si_code, info.si_status); 111 wait(int *stat_loc) argument 113 return (waitpid(-1, stat_loc, 0)); 117 wait4(pid_t pid, int *stat_loc, int options, struct rusage *rp) argument 179 if (stat_loc) 180 *stat_loc = wstat(info.si_code, info.si_status); 188 wait3(int *stat_loc, int options, struct rusage *rp) argument 190 return (wait4(0, stat_loc, option [all...] |
/osnet-11/usr/src/lib/lvm/libmeta/common/ |
H A D | meta_mn_handlers.c | 173 int stat_loc; local 245 while (waitpid(pid, &stat_loc, 0) < 0) { 252 resp->mmr_exitval = WEXITSTATUS(stat_loc);
|
Completed in 31 milliseconds