mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
vmstate: add support for uint8_t equal
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
77eea83830
commit
80cd83e7b2
2 changed files with 24 additions and 0 deletions
4
hw/hw.h
4
hw/hw.h
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue