aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2013-10-07 11:00:23 +0000
committerPedro Alves <palves@redhat.com>2013-10-07 11:00:23 +0000
commit46ecd52745f46247ab5e2c3b6ccda8bc3458242d (patch)
treecba8f7708567ef3eb0fc1d0deb1643c43c45f499
parent0c5571793a8e3dbd0f99b8e4759bd201f5fe75b7 (diff)
downloadgdb-46ecd52745f46247ab5e2c3b6ccda8bc3458242d.zip
gdb-46ecd52745f46247ab5e2c3b6ccda8bc3458242d.tar.gz
gdb-46ecd52745f46247ab5e2c3b6ccda8bc3458242d.tar.bz2
Thread-specific breakpoints: say "no longer in the thread list" instead of "gone".
It seems "gone" may confuse people, while that was exactly what it was trying to avoid. Switch to saying "no longer in the thread list", which is really the predicate GDB uses. gdb/ 2013-10-07 Pedro Alves <palves@redhat.com> PR breakpoints/11568 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in the thread list" instead of "gone".
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/breakpoint.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a433b46..9c3d419 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2013-10-07 Pedro Alves <palves@redhat.com>
+
+ PR breakpoints/11568
+ * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
+ the thread list" instead of "gone".
+
2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
* NEWS: Mention new convenience variable $_exitsignal.
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index b98ca9e..d3e9e49 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -2943,7 +2943,7 @@ remove_threaded_breakpoints (struct thread_info *tp, int silent)
b->disposition = disp_del_at_next_stop;
printf_filtered (_("\
-Thread-specific breakpoint %d deleted - thread %d is gone.\n"),
+Thread-specific breakpoint %d deleted - thread %d no longer in the thread list.\n"),
b->number, tp->num);
/* Hide it from the user. */