ARM: Implement the getrusage syscall.
This commit is contained in:
parent
6e39288be0
commit
5d67be7b1e
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ SyscallDesc ArmLinuxProcess::syscallDescs[] = {
|
||||||
/* 74 */ SyscallDesc("sethostname", ignoreFunc),
|
/* 74 */ SyscallDesc("sethostname", ignoreFunc),
|
||||||
/* 75 */ SyscallDesc("setrlimit", unimplementedFunc),
|
/* 75 */ SyscallDesc("setrlimit", unimplementedFunc),
|
||||||
/* 76 */ SyscallDesc("getrlimit", unimplementedFunc),
|
/* 76 */ SyscallDesc("getrlimit", unimplementedFunc),
|
||||||
/* 77 */ SyscallDesc("getrusage", unimplementedFunc),
|
/* 77 */ SyscallDesc("getrusage", getrusageFunc<ArmLinux>),
|
||||||
/* 78 */ SyscallDesc("gettimeofday", unimplementedFunc),
|
/* 78 */ SyscallDesc("gettimeofday", unimplementedFunc),
|
||||||
/* 79 */ SyscallDesc("settimeofday", unimplementedFunc),
|
/* 79 */ SyscallDesc("settimeofday", unimplementedFunc),
|
||||||
/* 80 */ SyscallDesc("getgroups", unimplementedFunc),
|
/* 80 */ SyscallDesc("getgroups", unimplementedFunc),
|
||||||
|
|
Loading…
Reference in a new issue