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
- Finding Inverse of a 3x3 Matrix with Cayley-Hamilton, and Diophantine Equation
- Manga involving the MC playing a computer game connected to a medieval fantasy world
- MinMaxStack - tracks minimum and maximum values
- Testing binary data for statistical independence
- Could the Restrainer be the First Seal being broken?
- Resolving skyscraper sheaves on a quadric using spinor bundles
- What does "origin of the world" vulgo "Big Bang" mean?
- How can I bend or deform an object to create a concave or pincushion shape?
- Formal and intuitive definitions of nilpotent group
- Sort this puzzle out
- algorithm2e - Functional programming style match-with using custom Switch
- Replace glyph from font A with a glyph from font B in LuaLaTeX/Node?
- Teil vs Unter for Mathematical Structures
- Can missed approach procedures be used for a PT?
- The Airbus A320 that pitched down due to solar radiation recently. Why did that happen? I thought the computers vote the corrupted one out and ignore?
- What physical changes to the mouth would cause problems with articulation?
- Movie about two immortals: a young girl and an older guy. The guy would collect and kill people for the girl to feed on
- Any concerns using blown-in cellulose without blower in a small cavity between cathedral ceiling and roof?
- Did around 50% of sailors die from scurvy on long voyages?
- Why is the verb "to sic" conjugated with a double c rather than the more typical ck?
- Was the spittle and mud in John 9:6-7, symbolic, a catalyst to faith, or a required act of obedience?
- The Worst Possible Chess Move
- What does E.T. mean in E.T. the Extra-Terrestrial?
- Sum of the parts
lang-c