diff options
| author | Warner Losh | 2022-01-31 21:32:41 +0100 |
|---|---|---|
| committer | Warner Losh | 2022-02-27 05:05:18 +0100 |
| commit | c5c84d16519abf3909bad77ef03db36801f560d5 (patch) | |
| tree | da9eada3ecc44ad139152422fef0c11bc336b6ed /bsd-user/freebsd | |
| parent | bsd-user/freebsd/os-syscall.c: Add get_errno and host_to_target_errno (diff) | |
| download | qemu-c5c84d16519abf3909bad77ef03db36801f560d5.tar.gz qemu-c5c84d16519abf3909bad77ef03db36801f560d5.tar.xz qemu-c5c84d16519abf3909bad77ef03db36801f560d5.zip | |
bsd-user/bsd-file.h: Implementation details for the filesystem calls
An include file that pulls in all the definitions needed for the file
related system calls. This also includes the host definitions to
implement the system calls and some helper routines to lock/unlock
different aspects of the system call arguments.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/freebsd')
| -rw-r--r-- | bsd-user/freebsd/os-syscall.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c index 597a41c2f5..a17ff9f6ec 100644 --- a/bsd-user/freebsd/os-syscall.c +++ b/bsd-user/freebsd/os-syscall.c @@ -41,6 +41,8 @@ #include "signal-common.h" #include "user/syscall-trace.h" +#include "bsd-file.h" + void target_set_brk(abi_ulong new_brk) { } |
