diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-10 03:04:36 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 11:10:06 -0500 |
commit | 80cd83e7b2e27de82939378f5b4eaa4108f4da81 (patch) | |
tree | 5f9887a809df0b0d2d94a963bbb668c30754fded /hw/hw.h | |
parent | 77eea83830d8616ad657bb87313953002dfb85f0 (diff) | |
download | qemu-80cd83e7b2e27de82939378f5b4eaa4108f4da81.zip qemu-80cd83e7b2e27de82939378f5b4eaa4108f4da81.tar.gz qemu-80cd83e7b2e27de82939378f5b4eaa4108f4da81.tar.bz2 |
vmstate: add support for uint8_t equal
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
@@ -318,6 +318,7 @@ extern const VMStateInfo vmstate_info_int16; extern const VMStateInfo vmstate_info_int32; extern const VMStateInfo vmstate_info_int64; +extern const VMStateInfo vmstate_info_uint8_equal; extern const VMStateInfo vmstate_info_int32_equal; extern const VMStateInfo vmstate_info_int32_le; @@ -461,6 +462,9 @@ extern const VMStateDescription vmstate_pci_device; #define VMSTATE_UINT64(_f, _s) \ VMSTATE_UINT64_V(_f, _s, 0) +#define VMSTATE_UINT8_EQUAL(_f, _s) \ + VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint8_equal, uint8_t) + #define VMSTATE_INT32_EQUAL(_f, _s) \ VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t) |