Skip to content

Debugging

Christoph Rösmann edited this page Mar 17, 2020 · 1 revision

GDB

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
Clone this wiki locally