summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-20 19:42:32 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 20:30:21 -0500
commit8250166039211e5753f070951b85982705fa0f56 (patch)
tree0693dc839b10ab5c0dc723f8f4075fd9f89b0ce6 /hw
parent5122b431c6d1b489e3f615002f7785fea80b776a (diff)
downloadqemu-8250166039211e5753f070951b85982705fa0f56.tar.gz
Add VMState support for int32_t check value
We read the saved value and check that it is the same that the one is stored in the structure. Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/hw.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/hw.h b/hw/hw.h
index 98afd2207b..ba812307ae 100644
--- a/hw/hw.h
+++ b/hw/hw.h
@@ -311,6 +311,8 @@ extern const VMStateInfo vmstate_info_int16;
extern const VMStateInfo vmstate_info_int32;
extern const VMStateInfo vmstate_info_int64;
+extern const VMStateInfo vmstate_info_int32_equal;
+
extern const VMStateInfo vmstate_info_uint8;
extern const VMStateInfo vmstate_info_uint16;
extern const VMStateInfo vmstate_info_uint32;
@@ -414,6 +416,9 @@ extern const VMStateInfo vmstate_info_timer;
#define VMSTATE_UINT64(_f, _s) \
VMSTATE_UINT64_V(_f, _s, 0)
+#define VMSTATE_INT32_EQUAL(_f, _s) \
+ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t)
+
#define VMSTATE_TIMER_V(_f, _s, _v) \
VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *)