From: Igor Mammedov Date: Tue, 23 Apr 2013 08:29:37 +0000 (+0200) Subject: cpu: Introduce cpu_resume(), for single CPU X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~900^2~59^2~148^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2993683b0fde0f836777c945baaddcaa5937903f;p=sdk%2Femulator%2Fqemu.git cpu: Introduce cpu_resume(), for single CPU Also add a stub for it, to make possible to use it in qom/cpu.c, which is shared with user emulators. Signed-off-by: Igor Mammedov Signed-off-by: Andreas Färber --- diff --git a/cpus.c b/cpus.c index 5a98a370df..1d8876157c 100644 --- a/cpus.c +++ b/cpus.c @@ -993,6 +993,13 @@ void pause_all_vcpus(void) } } +void cpu_resume(CPUState *cpu) +{ + cpu->stop = false; + cpu->stopped = false; + qemu_cpu_kick(cpu); +} + void resume_all_vcpus(void) { CPUArchState *penv = first_cpu; @@ -1000,9 +1007,7 @@ void resume_all_vcpus(void) qemu_clock_enable(vm_clock, true); while (penv) { CPUState *pcpu = ENV_GET_CPU(penv); - pcpu->stop = false; - pcpu->stopped = false; - qemu_cpu_kick(pcpu); + cpu_resume(pcpu); penv = penv->next_cpu; } } diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 3664a1b631..ac93dcec66 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -256,5 +256,12 @@ void cpu_interrupt(CPUState *cpu, int mask); */ void cpu_reset_interrupt(CPUState *cpu, int mask); +/** + * cpu_resume: + * @cpu: The CPU to resume. + * + * Resumes CPU, i.e. puts CPU into runnable state. + */ +void cpu_resume(CPUState *cpu); #endif diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index 9c55b34354..03dff202e4 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -23,3 +23,4 @@ stub-obj-y += sysbus.o stub-obj-y += vm-stop.o stub-obj-y += vmstate.o stub-obj-$(CONFIG_WIN32) += fd-register.o +stub-obj-y += cpus.o diff --git a/stubs/cpus.c b/stubs/cpus.c new file mode 100644 index 0000000000..37000dd611 --- /dev/null +++ b/stubs/cpus.c @@ -0,0 +1,5 @@ +#include "qom/cpu.h" + +void cpu_resume(CPUState *cpu) +{ +}