diff options
author | Andreas Färber <afaerber@suse.de> | 2013-05-27 03:23:24 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-06-28 13:25:13 +0200 |
commit | c643bed99fcde661b034623722004562b7953669 (patch) | |
tree | c7e112f6750940e686fa0363953c02dc6bd869cb /stubs/cpus.c | |
parent | 10a9021dfd9d8ebdaf53100a8e216054ef4fa662 (diff) | |
download | qemu-c643bed99fcde661b034623722004562b7953669.zip |
cpu: Change qemu_init_vcpu() argument to CPUState
This allows to move the call into CPUState's realizefn.
Therefore move the stub into libqemustub.a.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'stubs/cpus.c')
-rw-r--r-- | stubs/cpus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stubs/cpus.c b/stubs/cpus.c index f0d56c5381..8e6f06b116 100644 --- a/stubs/cpus.c +++ b/stubs/cpus.c @@ -4,3 +4,7 @@ void cpu_resume(CPUState *cpu) { } + +void qemu_init_vcpu(CPUState *cpu) +{ +} |