Lines Matching refs:pid
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()
46 if (pid < -1) in __wait4_time64()
49 pid *= -1; in __wait4_time64()
51 else if (pid == -1) in __wait4_time64()
53 else if (pid == 0) in __wait4_time64()
61 if (SYSCALL_CANCEL (waitid, idtype, pid, &infop, options, usage) < 0) in __wait4_time64()
66 if (SYSCALL_CANCEL (waitid, idtype, pid, &infop, options, &usage32) < 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()