(print_it_normal): return 0 after hitting watchpoint
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 30 Mar 1993 19:10:31 +0000 (19:10 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 30 Mar 1993 19:10:31 +0000 (19:10 +0000)
gdb/ChangeLog
gdb/breakpoint.c

index 0fd9d6cb361504483ec272ed09cb107eb7709330..166fdab6c92040f64d07d582f9e8aeba947065bf 100644 (file)
@@ -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).
index 1f9726b70393d7a41598b249afc3aa2a4297f289..070ea85736096ecf745cd33758cc63121f682fa6 100644 (file)
@@ -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;