diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-07-29 14:26:33 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-09-15 16:39:32 -0300 |
commit | 94ed08b1368dcc15d94ac38fd03f6398d4e64c16 (patch) | |
tree | 72559b694b482e5b0dc1f77faf96aa31d3678f64 /qemu-timer.c | |
parent | de80d0c993f538c9ad71a0a285a9607e65f92841 (diff) | |
download | qemu-94ed08b1368dcc15d94ac38fd03f6398d4e64c16.tar.gz qemu-94ed08b1368dcc15d94ac38fd03f6398d4e64c16.tar.bz2 qemu-94ed08b1368dcc15d94ac38fd03f6398d4e64c16.zip |
Replace the VMSTOP macros with a proper state type
Today, when notifying a VM state change with vm_state_notify(),
we pass a VMSTOP macro as the 'reason' argument. This is not ideal
because the VMSTOP macros tell why qemu stopped and not exactly
what the current VM state is.
One example to demonstrate this problem is that vm_start() calls
vm_state_notify() with reason=0, which turns out to be VMSTOP_USER.
This commit fixes that by replacing the VMSTOP macros with a proper
state type called RunState.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qemu-timer.c')
-rw-r--r-- | qemu-timer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-timer.c b/qemu-timer.c index 46dd483fdd..b5827862d9 100644 --- a/qemu-timer.c +++ b/qemu-timer.c @@ -1116,7 +1116,8 @@ static void win32_rearm_timer(struct qemu_alarm_timer *t) #endif /* _WIN32 */ -static void alarm_timer_on_change_state_rearm(void *opaque, int running, int reason) +static void alarm_timer_on_change_state_rearm(void *opaque, int running, + RunState state) { if (running) qemu_rearm_alarm_timer((struct qemu_alarm_timer *) opaque); |