qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC qom-cpu-next 6/6] cpu: Guard cpu_{save, load}() defini


From: Andreas Färber
Subject: [Qemu-devel] [RFC qom-cpu-next 6/6] cpu: Guard cpu_{save, load}() definitions
Date: Sat, 2 Feb 2013 16:04:16 +0100

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.

Signed-off-by: Andreas Färber <address@hidden>
---
 include/qemu-common.h |    2 ++
 1 Datei geändert, 2 Zeilen hinzugefügt(+)

diff --git a/include/qemu-common.h b/include/qemu-common.h
index af2379f..ef8a3fd 100644
--- a/include/qemu-common.h
+++ b/include/qemu-common.h
@@ -276,8 +276,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);
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]