diff options
author | Pedro Alves <palves@redhat.com> | 2013-10-07 11:00:23 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-10-07 11:00:23 +0000 |
commit | 46ecd52745f46247ab5e2c3b6ccda8bc3458242d (patch) | |
tree | cba8f7708567ef3eb0fc1d0deb1643c43c45f499 /gdb/breakpoint.c | |
parent | 0c5571793a8e3dbd0f99b8e4759bd201f5fe75b7 (diff) | |
download | gdb-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".
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |