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/qemu.h | |
| 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/qemu.h')
| -rw-r--r-- | bsd-user/qemu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index 4e7b8b1c06..208772d4ed 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -253,6 +253,8 @@ bool is_error(abi_long ret); int host_to_target_errno(int err); /* os-sys.c */ +abi_long do_freebsd_sysctl(CPUArchState *env, abi_ulong namep, int32_t namelen, + abi_ulong oldp, abi_ulong oldlenp, abi_ulong newp, abi_ulong newlen); abi_long do_freebsd_sysarch(void *cpu_env, abi_long arg1, abi_long arg2); /* user access */ |