From e8595ef6184abe444dc28dda492d30bf067eff51 Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Fri, 18 Dec 2009 00:36:47 +0000 Subject: [PATCH] 2009-12-17 Stan Shebs * breakpoint.c (bpstat_check_location): Check for tracepoints. --- gdb/ChangeLog | 4 ++++ gdb/breakpoint.c | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 18bb4ba5396..16759d3e640 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-12-17 Stan Shebs + + * breakpoint.c (bpstat_check_location): Check for tracepoints. + 2009-12-16 Michael Snyder * i386-tdep.c (i386_process_record): Reformat comments. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 5394ae408bf..47a10f68861 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3306,6 +3306,11 @@ bpstat_check_location (const struct bp_location *bl, { struct breakpoint *b = bl->owner; + /* By definition, the inferior does not report stops at + tracepoints. */ + if (b->type == bp_tracepoint) + return 0; + if (b->type != bp_watchpoint && b->type != bp_hardware_watchpoint && b->type != bp_read_watchpoint -- 2.30.2