user496934
user496934

Reputation: 4020

Using GDB to debug a process

I am using gdb to debug a process which runs in my m/c. I have attched the process to gdb and using breakpoints at various places to flow through the code. However, before I can reach anything useful, the process gets killed by the SIGPIPE signal. Is there any way I can prevent this using gdb so that I can continue my debugging session using GDB ?

Upvotes: 1

Views: 244

Answers (1)

Roman A. Taycher
Roman A. Taycher

Reputation: 19505

handle SIGPIPE nostop

Debugging with GDB - Signals

Upvotes: 2

Related Questions