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 ?
Add a comment |
1 Answer 1
handle SIGPIPE nostop
answered Jul 27, 2011 at 11:10
Roman A. Taycher
19.7k2424 gold badges9191 silver badges149149 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
- The Overflow Blog
-
-
- Featured on Meta
-
-
Related
Hot Network Questions
- Simple current source with bjt
- Condensation of water droplets on one side of a bottle!
- Did around 50% of sailors die from scurvy on long voyages?
- How do we decide whether a vibration of a solid object is longitudinal or transverse, when the object is not a 1D rod or 1D string?
- Why is the verb "to sic" conjugated with a double c rather than the more typical ck?
- Blind Spot Regarding the Correlation Coefficient
- Full-bridge rectifier causes strange slow oscillation of the DC voltage envelope
- Manga involving the MC playing a computer game connected to a medieval fantasy world
- I.N.Herstein "Topics in algebra" Sec. 1.1 The Set theory
- When was the symbol "U" first used to denote voltage or electric potential difference?
- What are the correct lyrics to the song "Lola", by The Kinks?
- Status of the tabularray package?
- Can a chocolate bar contain alcohol naturally?
- algorithm2e - Functional programming style match-with using custom Switch
- Soft drinks in my office’s community fridge keeps disappearing. How to deal with this?
- Any concerns using blown-in cellulose without blower in a small cavity between cathedral ceiling and roof?
- strange use of вышел
- What if a UK visa applicant has visited >30 countries in past 10 years
- Eel-wielding man drowns and his enemy leaves town
- Teil vs Unter for Mathematical Structures
- Is a proper wire nut connection possible if wires don’t twist?
- Is there an asymmetric standard applied to zero probability events?
- Expected number of upsets in a knockout tournament
- What does E.T. mean in E.T. the Extra-Terrestrial?
lang-c