diff options
| author | Warner Losh | 2021-08-04 07:27:25 +0200 |
|---|---|---|
| committer | Warner Losh | 2021-09-10 22:13:06 +0200 |
| commit | ab77bd844b55b6b0e04c552d7e992911ff75ccd7 (patch) | |
| tree | 16b688a782b46854a40038b00bbd2f1d22d04d21 | |
| parent | bsd-user: pull in target_arch_thread.h update target_arch_elf.h (diff) | |
| download | qemu-ab77bd844b55b6b0e04c552d7e992911ff75ccd7.tar.gz qemu-ab77bd844b55b6b0e04c552d7e992911ff75ccd7.tar.xz qemu-ab77bd844b55b6b0e04c552d7e992911ff75ccd7.zip | |
bsd-user: Include more things in qemu.h
Include more header files to match bsd-user fork.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
| -rw-r--r-- | bsd-user/qemu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index 5e4cbb40d4..55d71130bb 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -18,12 +18,12 @@ #define QEMU_H +#include "qemu/osdep.h" #include "cpu.h" #include "exec/cpu_ldst.h" +#include "exec/exec-all.h" #undef DEBUG_REMAP -#ifdef DEBUG_REMAP -#endif /* DEBUG_REMAP */ #include "exec/user/abitypes.h" @@ -36,6 +36,8 @@ enum BSDType { }; extern enum BSDType bsd_type; +#include "exec/user/thunk.h" +#include "target_arch.h" #include "syscall_defs.h" #include "target_syscall.h" #include "exec/gdbstub.h" |
