mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
savevm: Add VMSTATE_UINTTL_EQUAL helper
This adds an _EQUAL VMSTATE helper for target_ulongs, defined in terms of VMSTATE_UINT32_EQUAL or VMSTATE_UINT64_EQUAL as appropriate. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e344b8a16d
commit
d58f559834
2 changed files with 11 additions and 2 deletions
|
@ -519,8 +519,11 @@ extern const VMStateInfo vmstate_info_bitmap;
|
|||
#define VMSTATE_INT32_EQUAL(_f, _s) \
|
||||
VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t)
|
||||
|
||||
#define VMSTATE_UINT32_EQUAL(_f, _s) \
|
||||
VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint32_equal, uint32_t)
|
||||
#define VMSTATE_UINT32_EQUAL_V(_f, _s, _v) \
|
||||
VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint32_equal, uint32_t)
|
||||
|
||||
#define VMSTATE_UINT32_EQUAL(_f, _s) \
|
||||
VMSTATE_UINT32_EQUAL_V(_f, _s, 0)
|
||||
|
||||
#define VMSTATE_UINT64_EQUAL_V(_f, _s, _v) \
|
||||
VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint64_equal, uint64_t)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue