[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 13/28] bsd-user: Implement getrusage(2).
From: |
Karim Taha |
Subject: |
[PATCH v4 13/28] bsd-user: Implement getrusage(2). |
Date: |
Mon, 25 Sep 2023 00:01:21 +0300 |
From: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/bsd-proc.h | 13 +++++++++++++
bsd-user/freebsd/os-syscall.c | 4 ++++
2 files changed, 17 insertions(+)
diff --git a/bsd-user/bsd-proc.h b/bsd-user/bsd-proc.h
index cb7c69acb0..133c1b0eaf 100644
--- a/bsd-user/bsd-proc.h
+++ b/bsd-user/bsd-proc.h
@@ -124,4 +124,17 @@ static inline abi_long do_bsd_getlogin(abi_long arg1,
abi_long arg2)
return ret;
}
+/* getrusage(2) */
+static inline abi_long do_bsd_getrusage(abi_long who, abi_ulong target_addr)
+{
+ abi_long ret;
+ struct rusage rusage;
+
+ ret = get_errno(getrusage(who, &rusage));
+ if (!is_error(ret)) {
+ host_to_target_rusage(target_addr, &rusage);
+ }
+ return ret;
+}
+
#endif /* !BSD_PROC_H_ */
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index 44cbf52f08..5d8693ed55 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -243,6 +243,10 @@ static abi_long freebsd_syscall(void *cpu_env, int num,
abi_long arg1,
ret = do_bsd_getlogin(arg1, arg2);
break;
+ case TARGET_FREEBSD_NR_getrusage: /* getrusage(2) */
+ ret = do_bsd_getrusage(arg1, arg2);
+ break;
+
/*
* File system calls.
--
2.42.0
- [PATCH v4 05/28] bsd-user: add extern declarations for bsd-proc.c conversion functions, (continued)
- [PATCH v4 05/28] bsd-user: add extern declarations for bsd-proc.c conversion functions, Karim Taha, 2023/09/24
- [PATCH v4 06/28] bsd-user: Implement target_to_host_resource conversion function, Karim Taha, 2023/09/24
- [PATCH v4 07/28] bsd-user: Implement target_to_host_rlim and host_to_target_rlim conversion., Karim Taha, 2023/09/24
- [PATCH v4 09/28] bsd-user: Implement host_to_target_waitstatus conversion., Karim Taha, 2023/09/24
- [PATCH v4 08/28] bsd-user: Implement host_to_target_rusage and host_to_target_wrusage., Karim Taha, 2023/09/24
- [PATCH v4 10/28] bsd-user: Get number of cpus., Karim Taha, 2023/09/24
- [PATCH v4 11/28] bsd-user: Implement getgroups(2) and setgroups(2) system calls., Karim Taha, 2023/09/24
- [PATCH v4 12/28] bsd-user: Implement umask(2), setlogin(2) and getlogin(2), Karim Taha, 2023/09/24
- [PATCH v4 13/28] bsd-user: Implement getrusage(2).,
Karim Taha <=
- [PATCH v4 14/28] bsd-user: Implement getrlimit(2) and setrlimit(2), Karim Taha, 2023/09/24
- [PATCH v4 16/28] bsd-user: Implement get/set[resuid/resgid/sid] and issetugid., Karim Taha, 2023/09/24
- [PATCH v4 15/28] bsd-user: Implement several get/set system calls:, Karim Taha, 2023/09/24
- [PATCH v4 19/28] bsd-user: Implement get_filename_from_fd., Karim Taha, 2023/09/24
- [PATCH v4 17/28] bsd-user: Add stubs for profil(2), ktrace(2), utrace(2) and ptrace(2)., Karim Taha, 2023/09/24
- [PATCH v4 18/28] bsd-user: Implement getpriority(2) and setpriority(2)., Karim Taha, 2023/09/24
- [PATCH v4 20/28] bsd-user: Implement freebsd_exec_common, used in implementing execve/fexecve., Karim Taha, 2023/09/24
- [PATCH v4 21/28] bsd-user: Implement procctl(2) along with necessary conversion functions., Karim Taha, 2023/09/24
- [PATCH v4 22/28] bsd-user: Implement execve(2) and fexecve(2) system calls., Karim Taha, 2023/09/24