From d2053c3cca0b5c78317a183e19d2933ed23c6fc2 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 29 Mar 2010 19:23:48 +0000 Subject: [PATCH] Move cpu_exec_init_all() declaration to qemu-common.h Let cpu_exec_init_all() be called from non-CPU code. Signed-off-by: Blue Swirl --- cpu-all.h | 1 - qemu-common.h | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cpu-all.h b/cpu-all.h index f281a914ed..9942d49ff7 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -756,7 +756,6 @@ void page_set_flags(target_ulong start, target_ulong end, int flags); int page_check_range(target_ulong start, target_ulong len, int flags); #endif -void cpu_exec_init_all(unsigned long tb_size); CPUState *cpu_copy(CPUState *env); CPUState *qemu_get_cpu(int cpu); diff --git a/qemu-common.h b/qemu-common.h index 087c03472a..d881a3999b 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -231,6 +231,8 @@ typedef struct SSIBus SSIBus; typedef uint64_t pcibus_t; +void cpu_exec_init_all(unsigned long tb_size); + /* CPU save/load. */ void cpu_save(QEMUFile *f, void *opaque); int cpu_load(QEMUFile *f, void *opaque, int version_id); -- 2.11.4.GIT