mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
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>
This commit is contained in:
parent
10a9021dfd
commit
c643bed99f
21 changed files with 17 additions and 40 deletions
|
@ -295,14 +295,6 @@ struct qemu_work_item {
|
|||
int done;
|
||||
};
|
||||
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
static inline void qemu_init_vcpu(void *env)
|
||||
{
|
||||
}
|
||||
#else
|
||||
void qemu_init_vcpu(void *env);
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* Sends a (part of) iovec down a socket, yielding when the socket is full, or
|
||||
|
|
|
@ -428,6 +428,14 @@ void cpu_exit(CPUState *cpu);
|
|||
*/
|
||||
void cpu_resume(CPUState *cpu);
|
||||
|
||||
/**
|
||||
* qemu_init_vcpu:
|
||||
* @cpu: The vCPU to initialize.
|
||||
*
|
||||
* Initializes a vCPU.
|
||||
*/
|
||||
void qemu_init_vcpu(CPUState *cpu);
|
||||
|
||||
#ifdef CONFIG_SOFTMMU
|
||||
extern const struct VMStateDescription vmstate_cpu_common;
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue