-
Notifications
You must be signed in to change notification settings - Fork 24
Debugging
Christoph Rösmann edited this page Mar 17, 2020
·
1 revision
When debugging with GDB (e.g. within QtCreator or kDevelop), it might fail due to some real-time event signal in gRPC:
- Signal name: SIG40
- Signal meaning: Real-time event 40
As a workaround you can permit GDB to pass this signal by providing the following custom-configuration to GDB:
nano ~/.gdbinit
Now add the following lines:
handle SIG34 nostop noprint pass
handle SIG40 nostop noprint pass