diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2022-02-03 12:51:06 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2022-03-06 13:15:42 +0100 |
| commit | 5f74af8bab3978b766bdf78255079da3b8a1a888 (patch) | |
| tree | 3b97796dcbb65c10cc4f9c08151caae3580adbd5 | |
| parent | b04363c24055f3cc9a458bf723ebebdfbabb578c (diff) | |
| download | focaccia-qemu-5f74af8bab3978b766bdf78255079da3b8a1a888.tar.gz focaccia-qemu-5f74af8bab3978b766bdf78255079da3b8a1a888.zip | |
softmmu/cpus: Code movement
We want cpu_thread_is_idle() to use cpus_accel, so declare this variable earlier. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220207075426.81934-10-f4bug@amsat.org>
| -rw-r--r-- | softmmu/cpus.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/softmmu/cpus.c b/softmmu/cpus.c index 3f8fae43ba..ac6bec5603 100644 --- a/softmmu/cpus.c +++ b/softmmu/cpus.c @@ -67,6 +67,11 @@ static QemuMutex qemu_global_mutex; +/* + * The chosen accelerator is supposed to register this. + */ +static const AccelOpsClass *cpus_accel; + bool cpu_is_stopped(CPUState *cpu) { return cpu->stopped || !runstate_is_running(); @@ -122,11 +127,6 @@ void hw_error(const char *fmt, ...) abort(); } -/* - * The chosen accelerator is supposed to register this. - */ -static const AccelOpsClass *cpus_accel; - void cpu_synchronize_all_states(void) { CPUState *cpu; |