diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-05 15:08:34 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2022-10-26 11:11:28 +1000 |
| commit | cc05368ad999a5e06890a829b2ccba7ae4e0fe8b (patch) | |
| tree | 9ea99fa6bd393a1aa21bf460375df26a1eecf1e7 /include/exec/exec-all.h | |
| parent | 8a14b62c3fc89a46fbf61c9cc96cb470a6ad9de5 (diff) | |
| download | focaccia-qemu-cc05368ad999a5e06890a829b2ccba7ae4e0fe8b.tar.gz focaccia-qemu-cc05368ad999a5e06890a829b2ccba7ae4e0fe8b.zip | |
accel/tcg: Move assert_no_pages_locked to internal.h
There are no users outside of accel/tcg; this function does not need to be defined in exec-all.h. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/exec-all.h')
| -rw-r--r-- | include/exec/exec-all.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index e5f8b224a5..b5bde1b56a 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -642,14 +642,6 @@ extern __thread uintptr_t tci_tb_ptr; smaller than 4 bytes, so we don't worry about special-casing this. */ #define GETPC_ADJ 2 -#if !defined(CONFIG_USER_ONLY) && defined(CONFIG_DEBUG_TCG) -void assert_no_pages_locked(void); -#else -static inline void assert_no_pages_locked(void) -{ -} -#endif - #if !defined(CONFIG_USER_ONLY) /** |