projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9324cc5
)
vmstate: add VMSTATE_TIMER_V
author
Paolo Bonzini
<pbonzini@redhat.com>
Thu, 2 Aug 2012 16:04:08 +0000
(18:04 +0200)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Mon, 10 Sep 2012 18:52:28 +0000
(13:52 -0500)
Also, for consistency with other occurrences, implement VMSTATE_TIMER
as a special case of VMSTATE_TIMER_V rather than VMSTATE_TIMER_TEST.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vmstate.h
patch
|
blob
|
history
diff --git
a/vmstate.h
b/vmstate.h
index 5bd2b762ab0aaaaa7e01cd42e67696d5fe0379c1..c9c320e62e099e906c941c0fe4c7ec35fead2805 100644
(file)
--- a/
vmstate.h
+++ b/
vmstate.h
@@
-503,8
+503,11
@@
extern const VMStateInfo vmstate_info_unused_buffer;
#define VMSTATE_TIMER_TEST(_f, _s, _test) \
VMSTATE_POINTER_TEST(_f, _s, _test, vmstate_info_timer, QEMUTimer *)
+#define VMSTATE_TIMER_V(_f, _s, _v) \
+ VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *)
+
#define VMSTATE_TIMER(_f, _s) \
- VMSTATE_TIMER_
TEST(_f, _s, NULL
)
+ VMSTATE_TIMER_
V(_f, _s, 0
)
#define VMSTATE_TIMER_ARRAY(_f, _s, _n) \
VMSTATE_ARRAY_OF_POINTER(_f, _s, _n, 0, vmstate_info_timer, QEMUTimer *)