aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Chouteau <chouteau@adacore.com>2015-02-07 09:38:45 +0100
committerPeter Maydell <peter.maydell@linaro.org>2015-05-28 16:46:46 +0100
commit7b664b4d02f42c03cf2f78a2f03c03326e6adb8d (patch)
treec3d80cae62657a9816de60a0521c58c83da2a60f
parent6310b890555a549a4e9d23a34858ae4437ea139b (diff)
Revert "gdbstub: Do not kill target in system emulation mode"gdbstub
The requirements described in this patch are implemented by "Add GDB qAttached support". This reverts commit 00e94dbc7fd0110b0555d59592b004333adfb4b8. Signed-off-by: Fabien Chouteau <chouteau@adacore.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--gdbstub.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdbstub.c b/gdbstub.c
index 0e512804ea..75563db79d 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -888,11 +888,9 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
goto unknown_command;
}
case 'k':
-#ifdef CONFIG_USER_ONLY
/* Kill the target */
fprintf(stderr, "\nQEMU: Terminated via GDBstub\n");
exit(0);
-#endif
case 'D':
/* Detach packet */
gdb_breakpoint_remove_all();