summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2003-11-06 18:35:05 +0000
committerDaniel Jacobowitz <dan@debian.org>2003-11-06 18:35:05 +0000
commit6993d76e2b957941ee511c16ff9de6f13318cad4 (patch)
tree96e26a92c8dbcc2d09b532ad46e16dd882c48a47
parentddb7cf3e8428f847495aadb8a034e117d5a74561 (diff)
downloadgdb-6993d76e2b957941ee511c16ff9de6f13318cad4.tar.gz
* breakpoint.c (insert_bp_location, allocate_bp_location): Make
static.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/breakpoint.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0813e67ecf8..169d79e787c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2003-11-06 Daniel Jacobowitz <drow@mvista.com>
+ * breakpoint.c (insert_bp_location, allocate_bp_location): Make
+ static.
+
+2003-11-06 Daniel Jacobowitz <drow@mvista.com>
+
* breakpoint.c (remove_breakpoint): Take an bp_location
instead of a breakpoint argument. Check the bp_location's type.
Fix a reversed condition for hardware breakpoints.
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index b683c2ab506..962f83aa625 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -747,11 +747,11 @@ insert_catchpoint (struct ui_out *uo, void *args)
NOTE drow/2003-09-09: This routine could be broken down to an object-style
method for each breakpoint or catchpoint type. */
-int
+static int
insert_bp_location (struct bp_location *bpt,
- struct ui_file *tmp_error_stream,
- int *disabled_breaks, int *process_warning,
- int *hw_breakpoint_error)
+ struct ui_file *tmp_error_stream,
+ int *disabled_breaks, int *process_warning,
+ int *hw_breakpoint_error)
{
int val = 0;
@@ -3936,7 +3936,7 @@ adjust_breakpoint_address (CORE_ADDR bpaddr)
/* Allocate a struct bp_location. */
-struct bp_location *
+static struct bp_location *
allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
{
struct bp_location *loc, *loc_p;