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 /include/exec/cpu-all.h | |
| 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 'include/exec/cpu-all.h')
| -rw-r--r-- | include/exec/cpu-all.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h index 1c8e0446d0..3d97323893 100644 --- a/include/exec/cpu-all.h +++ b/include/exec/cpu-all.h @@ -127,11 +127,6 @@ extern const TargetPageBits target_page; #define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE) #if defined(CONFIG_USER_ONLY) -void page_dump(FILE *f); - -typedef int (*walk_memory_regions_fn)(void *, target_ulong, - target_ulong, unsigned long); -int walk_memory_regions(void *, walk_memory_regions_fn); int page_get_flags(target_ulong address); |