diff options
-rw-r--r-- | target-arm/cpu.h | 2 | ||||
-rw-r--r-- | target-arm/exec.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 54c2c2e3f8..cab80cdfe6 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -217,6 +217,8 @@ uint32_t do_arm_semihosting(CPUARMState *env); is returned if the signal was handled by the virtual CPU. */ int cpu_arm_signal_handler(int host_signum, void *pinfo, void *puc); +int cpu_arm_handle_mmu_fault (CPUARMState *env, target_ulong address, int rw, + int mmu_idx, int is_softmuu); void cpu_lock(void); void cpu_unlock(void); diff --git a/target-arm/exec.h b/target-arm/exec.h index b70e0cbc2a..3e4083a61b 100644 --- a/target-arm/exec.h +++ b/target-arm/exec.h @@ -37,9 +37,6 @@ static inline void regs_to_env(void) { } -int cpu_arm_handle_mmu_fault (CPUState *env, target_ulong address, int rw, - int mmu_idx, int is_softmmu); - static inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; |