diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-29 22:48:29 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:38 -0500 |
commit | b6bd0bdc552d09c123eb5b443ca7e6d0329ff096 (patch) | |
tree | ee3486a004bd7d69072f1d6b48264ceb8681102a /hw/hw.h | |
parent | bcbe8068b7385194b6055d8023de45dd4ccc286a (diff) |
vmstate: add uint8 array
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 | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -510,6 +510,12 @@ extern const VMStateDescription vmstate_pci_device; #define VMSTATE_UINT16_ARRAY(_f, _s, _n) \ VMSTATE_UINT16_ARRAY_V(_f, _s, _n, 0) +#define VMSTATE_UINT8_ARRAY_V(_f, _s, _n, _v) \ + VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint8, uint8_t) + +#define VMSTATE_UINT8_ARRAY(_f, _s, _n) \ + VMSTATE_UINT8_ARRAY_V(_f, _s, _n, 0) + #define VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v) \ VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint32, uint32_t) |