Merge pull request #85 from keywan-ghadami/gdb-ignore-gc-signals

configure gdb to ignore garbage collection signals
This commit is contained in:
Vadim Lopatin 2015-12-29 11:32:36 +03:00
commit f226563981

View file

@ -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");
}