From: neder <[email protected]>
---
softmmu/cpus.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/softmmu/cpus.c b/softmmu/cpus.c
index b1807e6d7b..5d0657bbe5 100644
--- a/softmmu/cpus.c
+++ b/softmmu/cpus.c
@@ -306,7 +306,10 @@ void cpu_handle_guest_debug(CPUState *cpu)
cpu_single_step(cpu, 0);
}
} else {
- /*gdb_set_stop_cpu(cpu);*/
+ /*
+ * TODO: was gdb_set_stop_cpu(cpu), need to abstract options to
+ * a QOM class.
+ */
qemu_system_debug_request();
cpu->stopped = true;
}
--
2.34.1