mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-08 16:43:19 +00:00
2009-12-17 Stan Shebs <stan@codesourcery.com>
* breakpoint.c (bpstat_check_location): Check for tracepoints.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2009-12-17 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
|
* breakpoint.c (bpstat_check_location): Check for tracepoints.
|
||||||
|
|
||||||
2009-12-16 Michael Snyder <msnyder@vmware.com>
|
2009-12-16 Michael Snyder <msnyder@vmware.com>
|
||||||
|
|
||||||
* i386-tdep.c (i386_process_record): Reformat comments.
|
* i386-tdep.c (i386_process_record): Reformat comments.
|
||||||
|
|||||||
@@ -3306,6 +3306,11 @@ bpstat_check_location (const struct bp_location *bl,
|
|||||||
{
|
{
|
||||||
struct breakpoint *b = bl->owner;
|
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
|
if (b->type != bp_watchpoint
|
||||||
&& b->type != bp_hardware_watchpoint
|
&& b->type != bp_hardware_watchpoint
|
||||||
&& b->type != bp_read_watchpoint
|
&& b->type != bp_read_watchpoint
|
||||||
|
|||||||
Reference in New Issue
Block a user