When debugging a program that forks with follow-fork set to follow
the parent, we end up calling detach_breakpoints for the child twice.
On ia64-hpux, this leads to a warning when trying to remove the
breakpoints the second time around, because the ia64 code detects
that the address does not point to a breakpoint instruction.
gdb/ChangeLog:
* inf-ttrace.c (inf_ttrace_follow_fork): When following the
parent, only call detach_breakpoints if tts.tts_event ==
TTEVT_VFORK.
2012-08-16 Joel Brobecker <brobecker@adacore.com>
+ * inf-ttrace.c (inf_ttrace_follow_fork): When following the
+ parent, only call detach_breakpoints if tts.tts_event ==
+ TTEVT_VFORK.
+
+2012-08-16 Joel Brobecker <brobecker@adacore.com>
+
* dwarf2-frame.c (dwarf2_frame_cache): Use
get_frame_address_in_block instead of get_frame_pc as
the bound for executing the frame's FDE.
else
{
inferior_ptid = ptid_build (pid, lwpid, 0);
- detach_breakpoints (fpid);
+ /* Detach any remaining breakpoints in the child. In the case
+ of fork events, we do not need to do this, because breakpoints
+ should have already been removed earlier. */
+ if (tts.tts_event == TTEVT_VFORK)
+ detach_breakpoints (fpid);
target_terminal_ours ();
fprintf_unfiltered (gdb_stdlog,