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 <imammedo@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Igor Mammedov 2013-04-23 10:29:37 +02:00 committed by Andreas Färber
parent 13eed94ed5
commit 2993683b0f
4 changed files with 21 additions and 3 deletions

5
stubs/cpus.c Normal file
View file

@ -0,0 +1,5 @@
#include "qom/cpu.h"
void cpu_resume(CPUState *cpu)
{
}