diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 18:01:41 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
| commit | f47dcf519de985501339b83a46eab7db692883b0 (patch) | |
| tree | 75eb08b18cd2256d15e905e56276c5ec89a7d63d /include/exec | |
| parent | 187b7ca96a3e682226ba43a3b4b3d4c8954834b5 (diff) | |
| download | focaccia-qemu-f47dcf519de985501339b83a46eab7db692883b0.tar.gz focaccia-qemu-f47dcf519de985501339b83a46eab7db692883b0.zip | |
accel/tcg: Move user-related declarations out of 'exec/cpu-all.h' (4/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-15-philmd@linaro.org>
Diffstat (limited to 'include/exec')
| -rw-r--r-- | include/exec/cpu-all.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h index 73b11f58ab..f7eea33b10 100644 --- a/include/exec/cpu-all.h +++ b/include/exec/cpu-all.h @@ -126,12 +126,6 @@ extern const TargetPageBits target_page; #define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE) -#if defined(CONFIG_USER_ONLY) - -int page_get_flags(target_ulong address); - -#endif - CPUArchState *cpu_copy(CPUArchState *env); /* Flags for use in ENV->INTERRUPT_PENDING. |