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] Be explicit when using software breakpoint/watchpoint


When there is no more hw watchpoint/breakpoint we see:
  (gdb) watch *0x10
  Hardware watchpoint 1: *0x10
  (gdb) info watchpoints
  Num  Type        Disp  Enb Address  What
  1    watchpoint  keep  y            *0x10

This patch change to:
  (gdb) info watchpoints
  Num  Type           Disp  Enb Address  What
  1    sw watchpoint  keep  y            *0x10
---
 gdb/breakpoint.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 8585f5e..2a542b1 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -6102,12 +6102,12 @@ bptype_string (enum bptype type)
   static struct ep_type_description bptypes[] =
   {
     {bp_none, "?deleted?"},
-    {bp_breakpoint, "breakpoint"},
+    {bp_breakpoint, "sw breakpoint"},
     {bp_hardware_breakpoint, "hw breakpoint"},
     {bp_single_step, "sw single-step"},
     {bp_until, "until"},
     {bp_finish, "finish"},
-    {bp_watchpoint, "watchpoint"},
+    {bp_watchpoint, "sw watchpoint"},
     {bp_hardware_watchpoint, "hw watchpoint"},
     {bp_read_watchpoint, "read watchpoint"},
     {bp_access_watchpoint, "acc watchpoint"},
-- 
2.9.5


.


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