1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* wait4() for uClibc
*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sys/wait.h>
#include <sys/resource.h>
# define __NR___syscall_wait4 __NR_wait4
static __always_inline _syscall4(int, __syscall_wait4, __kernel_pid_t, pid,
int *, status, int, opts, struct rusage *, rusage)
pid_t __wait4_nocancel(pid_t pid, int *status, int opts, struct rusage *rusage)
{
#if defined(__UCLIBC_USE_TIME64__)
char *arg_rusage = rusage ? (char *)&rusage->ru_maxrss - 4 * sizeof(__S32_TYPE) : 0;
int __ret = __syscall_wait4(pid, status, opts, (struct rusage *)arg_rusage);
if (__ret > 0 && rusage) {
__S32_TYPE __rusage[4];
memcpy(__rusage, arg_rusage, 4 * sizeof(__S32_TYPE));
struct timeval tv_utime = {.tv_sec = __rusage[0], .tv_usec = __rusage[1]};
struct timeval tv_stime = {.tv_sec = __rusage[2], .tv_usec = __rusage[2]};
rusage->ru_utime = tv_utime;
rusage->ru_stime = tv_stime;
}
return __ret;
#else
return __syscall_wait4(pid, status, opts, rusage);
#endif
}
#ifdef __USE_BSD
strong_alias(__wait4_nocancel,wait4)
#endif
|