config gdb to ignore garbage collection signals

to do so i send following commands following to gdb on startup:
handle SIGUSR1 nostop noprint
handle SIGUSR2 nostop noprint

this prevents gdp from beeing interuppted by garbage collection signals
This commit is contained in:
Keywan Ghadami 2015-12-28 22:46:20 +01:00
parent f85cb7da9c
commit 225459e115
1 changed files with 2 additions and 0 deletions

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