diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 17:10:46 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
commit | 634f1455fc34d417df209bc744c4134db26708bb (patch) | |
tree | d8246241d09d140c0415941026315f06e5bd517c /include/exec | |
parent | 384fd3543b8a4f53269bb0e57d62189b43b4a635 (diff) | |
download | qemu-634f1455fc34d417df209bc744c4134db26708bb.zip qemu-634f1455fc34d417df209bc744c4134db26708bb.tar.gz qemu-634f1455fc34d417df209bc744c4134db26708bb.tar.bz2 |
accel/tcg: Move page_[un]protect() 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-7-philmd@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/translate-all.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/exec/translate-all.h b/include/exec/translate-all.h index c50661a..039668f 100644 --- a/include/exec/translate-all.h +++ b/include/exec/translate-all.h @@ -25,9 +25,4 @@ /* translate-all.c */ void tb_check_watchpoint(CPUState *cpu, uintptr_t retaddr); -#ifdef CONFIG_USER_ONLY -void page_protect(tb_page_addr_t page_addr); -int page_unprotect(tb_page_addr_t address, uintptr_t pc); -#endif - #endif /* TRANSLATE_ALL_H */ |