aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/breakpoint.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0fd9d6c..166fdab 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
Tue Mar 30 08:06:24 1993 Jim Kingdon (kingdon@cygnus.com)
+ * breakpoint.c (print_it_normal): Return 0 after hitting watchpoint.
+
* breakpoint.h (bpstat): New field print_it.
breakpoint.c (bpstat_print): Use it.
(print_it_normal): New function (from old bpstat_print code).
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 1f9726b..070ea85 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -736,7 +736,7 @@ print_it_normal (bs)
printf_filtered ("\n");
value_free (bs->old_val);
bs->old_val = NULL;
- return 1;
+ return 0;
}
/* We can't deal with it. Maybe another member of the bpstat chain can. */
return -1;
@@ -745,7 +745,7 @@ print_it_normal (bs)
/* Print a message indicating what happened. Returns nonzero to
say that only the source line should be printed after this (zero
return means print the frame as well as the source line). */
-
+/* Currently we always return zero. */
int
bpstat_print (bs)
bpstat bs;