mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-18 05:28:36 -07:00
gdbstub: do not restart crashed guest
If a guest has crashed with an internal error or similar, detaching gdb (or any other debugger action) should not restart it. Cc: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-id: 1369912840-18577-1-git-send-email-pbonzini@redhat.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
bbfa18fca4
commit
87f25c12bf
1 changed files with 3 additions and 1 deletions
|
|
@ -371,7 +371,9 @@ static inline void gdb_continue(GDBState *s)
|
||||||
#ifdef CONFIG_USER_ONLY
|
#ifdef CONFIG_USER_ONLY
|
||||||
s->running_state = 1;
|
s->running_state = 1;
|
||||||
#else
|
#else
|
||||||
vm_start();
|
if (runstate_check(RUN_STATE_DEBUG)) {
|
||||||
|
vm_start();
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue