diff --git a/src/ddebug/gdb/gdbinterface.d b/src/ddebug/gdb/gdbinterface.d index 4a3e21d..65e453d 100644 --- a/src/ddebug/gdb/gdbinterface.d +++ b/src/ddebug/gdb/gdbinterface.d @@ -271,6 +271,8 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget { /// start program execution, can be called after program is loaded int _startRequestId; void execStart() { + sendCommand("handle SIGUSR1 nostop noprint"); + sendCommand("handle SIGUSR2 nostop noprint"); _startRequestId = sendCommand("-exec-run"); }