diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-20 19:42:37 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:30:22 -0500 |
commit | 0a031e0ac6218fa1b8478ebac3eddb912d2a236a (patch) | |
tree | 706bb52ef3b700bb618e98c7dad04d2214ed5efe /hw/hw.h | |
parent | b31442c31e0b7aaeebce5128700752997c8e495f (diff) |
Add VMState support for int32_t check value
We read the saved value and check that it is less or equal than the one
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/hw.h')
-rw-r--r-- | hw/hw.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -315,6 +315,7 @@ extern const VMStateInfo vmstate_info_int32; extern const VMStateInfo vmstate_info_int64; extern const VMStateInfo vmstate_info_int32_equal; +extern const VMStateInfo vmstate_info_int32_le; extern const VMStateInfo vmstate_info_uint8; extern const VMStateInfo vmstate_info_uint16; @@ -447,6 +448,9 @@ extern const VMStateInfo vmstate_info_buffer; #define VMSTATE_INT32_EQUAL(_f, _s) \ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t) +#define VMSTATE_INT32_LE(_f, _s) \ + VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t) + #define VMSTATE_TIMER_V(_f, _s, _v) \ VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *) |