Lines Matching refs:stat_loc
26 __wait4_time64 (pid_t pid, int *stat_loc, int options, struct __rusage64 *usage) in __wait4_time64() argument
30 return SYSCALL_CANCEL (wait4, pid, stat_loc, options, usage); in __wait4_time64()
35 ret = SYSCALL_CANCEL (wait4, pid, stat_loc, options, in __wait4_time64()
73 if (stat_loc) in __wait4_time64()
78 *stat_loc = W_EXITCODE (infop.si_status, 0); in __wait4_time64()
81 *stat_loc = WCOREFLAG | infop.si_status; in __wait4_time64()
84 *stat_loc = infop.si_status; in __wait4_time64()
88 *stat_loc = W_STOPCODE (infop.si_status); in __wait4_time64()
91 *stat_loc = __W_CONTINUED; in __wait4_time64()
94 *stat_loc = 0; in __wait4_time64()
115 __wait4 (pid_t pid, int *stat_loc, int options, struct rusage *usage) in libc_hidden_def()
120 ret = __wait4_time64 (pid, stat_loc, options, in libc_hidden_def()