mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00
cpu: Guard cpu_{save,load}() definitions
A few targets already managed to implement cpu_save() and cpu_load() without defining CPU_SAVE_VERSION that causes them to be registered. Guard the prototypes with CPU_SAVE_VERSION to avoid this happening again until all targets are converted to VMState (or QIDL). Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
da69721460
commit
8d0f2baebe
1 changed files with 2 additions and 0 deletions
|
@ -279,8 +279,10 @@ bool tcg_enabled(void);
|
|||
void cpu_exec_init_all(void);
|
||||
|
||||
/* CPU save/load. */
|
||||
#ifdef CPU_SAVE_VERSION
|
||||
void cpu_save(QEMUFile *f, void *opaque);
|
||||
int cpu_load(QEMUFile *f, void *opaque, int version_id);
|
||||
#endif
|
||||
|
||||
/* Unblock cpu */
|
||||
void qemu_cpu_kick_self(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue