This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch]: inform user that a watchpoint is hit


When a program is restarted within gdb, the initial breakpoint hit messages are
not outputted on to the screen. Inform the user that a watchpoint has been hit

Signed-off-by: Chandru Siddalingappa <chandru@ilinux.vnet.ibm.com>
---

--- gdb/breakpoint.c.orig	2009-08-14 17:53:06.000000000 +0530
+++ gdb/breakpoint.c	2009-08-14 17:54:02.000000000 +0530
@@ -842,6 +842,9 @@ update_watchpoint (struct breakpoint *b,
   struct bp_location *loc;
   bpstat bs;
 
+  if (breakpoint_enabled (b))
+      mention(b);
+
   unlink_locations_from_global_list (b);
   for (loc = b->loc; loc;)
     {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]