Skip to content
  • Luiz Capitulino's avatar
    Replace the VMSTOP macros with a proper state type · 1dfb4dd9
    Luiz Capitulino authored
    
    
    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: default avatarLuiz Capitulino <lcapitulino@redhat.com>
    1dfb4dd9