diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 17:50:19 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
| commit | 970ae60e9bdcc2e831b8226a6ebeb37efdc9f5a4 (patch) | |
| tree | 58e3ccffd5bb618b1181dc6766bb2dbf94218223 /linux-user/mmap.c | |
| parent | b7cc677478f329912fbc5c16ec36193c72aa9044 (diff) | |
| download | focaccia-qemu-970ae60e9bdcc2e831b8226a6ebeb37efdc9f5a4.tar.gz focaccia-qemu-970ae60e9bdcc2e831b8226a6ebeb37efdc9f5a4.zip | |
accel/tcg: Move user-related declarations out of 'exec/cpu-all.h' (1/4)
Move declarations related to page protection under user emulation from "exec/cpu-all.h" to "user/page-protection.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241212185341.2857-12-philmd@linaro.org>
Diffstat (limited to 'linux-user/mmap.c')
| -rw-r--r-- | linux-user/mmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/mmap.c b/linux-user/mmap.c index e4bf5d5f39..4e0444b4cb 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -22,6 +22,7 @@ #include "exec/log.h" #include "exec/page-protection.h" #include "qemu.h" +#include "user/page-protection.h" #include "user-internals.h" #include "user-mmap.h" #include "target_mman.h" |