diff options
author | Daniel Jacobowitz <drow@false.org> | 2004-01-31 19:59:06 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2004-01-31 19:59:06 +0000 |
commit | 9709f61c0fccde8b375d86cd8c515431c29f76d3 (patch) | |
tree | abbb033d20c212a408239fa943e5b128e08d3027 /gdb/breakpoint.h | |
parent | 4f1280bb7168b0b4679f185fe35e5abd31acfa36 (diff) | |
download | gdb-9709f61c0fccde8b375d86cd8c515431c29f76d3.zip gdb-9709f61c0fccde8b375d86cd8c515431c29f76d3.tar.gz gdb-9709f61c0fccde8b375d86cd8c515431c29f76d3.tar.bz2 |
* breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
argument, and change first argument to a CORE_ADDR.
* breakpoint.h (bpstat_stop_status): Update prototype.
* infrun.c (adjust_pc_after_break): Add a new comment.
(handle_inferior_event): Update calls to bpstat_stop_status.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index b610da0..b3253c7 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -403,7 +403,7 @@ extern void bpstat_clear (bpstat *); is part of the bpstat is copied as well. */ extern bpstat bpstat_copy (bpstat); -extern bpstat bpstat_stop_status (CORE_ADDR *pc, int not_a_sw_breakpoint); +extern bpstat bpstat_stop_status (CORE_ADDR pc); /* This bpstat_what stuff tells wait_for_inferior what to do with a breakpoint (a challenging task). */ |