diff options
author | Warner Losh <imp@bsdimp.com> | 2022-01-31 13:32:41 -0700 |
---|---|---|
committer | Warner Losh <imp@bsdimp.com> | 2022-02-26 21:05:18 -0700 |
commit | c5c84d16519abf3909bad77ef03db36801f560d5 (patch) | |
tree | da9eada3ecc44ad139152422fef0c11bc336b6ed /bsd-user/freebsd | |
parent | deeff83b47683a078c7f2ff057f4388258246f55 (diff) |
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) { } |