diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2023-02-10 10:02:45 -0700 |
|---|---|---|
| committer | Warner Losh <imp@bsdimp.com> | 2023-03-01 11:09:19 -0700 |
| commit | 7adda6de6d2d994aaf5f7da375ca951157bb008a (patch) | |
| tree | 5b0785c16071f82c2a3b05f6a18603899d2215ce /bsd-user/freebsd/os-syscall.c | |
| parent | 248a485bf6d1519d4a41c69fb85b32c7480ae54a (diff) | |
| download | focaccia-qemu-7adda6de6d2d994aaf5f7da375ca951157bb008a.tar.gz focaccia-qemu-7adda6de6d2d994aaf5f7da375ca951157bb008a.zip | |
bsd-user: do_freebsd_sysctl helper for sysctl(2)
Implement the wrapper function for sysctl(2). This puts the oid arguments into a standard form and calls the common do_freebsd_sysctl_oid. Signed-off-by: Kyle Evans <kevans@FreeBSD.org> Co-Authored-by: Juergen Lock <nox@jelal.kn-bremen.de> Signed-off-by: Juergen Lock <nox@jelal.kn-bremen.de> Co-Authored-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Stacey Son <sson@FreeBSD.org> Reviewed-by: Warner Losh <imp@bsdimp.com> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/freebsd/os-syscall.c')
| -rw-r--r-- | bsd-user/freebsd/os-syscall.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c index e00997a818..20ab3d4d9a 100644 --- a/bsd-user/freebsd/os-syscall.c +++ b/bsd-user/freebsd/os-syscall.c @@ -494,6 +494,10 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1, /* * sys{ctl, arch, call} */ + case TARGET_FREEBSD_NR___sysctl: /* sysctl(3) */ + ret = do_freebsd_sysctl(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); + break; + case TARGET_FREEBSD_NR_sysarch: /* sysarch(2) */ ret = do_freebsd_sysarch(cpu_env, arg1, arg2); break; |