mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
2003-06-03 Jeff Johnston <jjohnstn@redhat.com>
* thread-db.c (thread_db_mourn_inferior): Unpush thread target layer if not dealing with a statically-linked threaded program.
This commit is contained in:
parent
f43caff87c
commit
043b2f77bb
@ -1,3 +1,8 @@
|
||||
2003-06-03 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* thread-db.c (thread_db_mourn_inferior): Unpush thread target
|
||||
layer if not dealing with a statically-linked threaded program.
|
||||
|
||||
2003-06-03 Kris Warkentin <kewarken@qnx.com>
|
||||
|
||||
* solib.c (solib_open): Update comment to reflect actual search order.
|
||||
|
@ -1011,6 +1011,18 @@ thread_db_mourn_inferior (void)
|
||||
proc_handle.pid = 0;
|
||||
|
||||
target_beneath->to_mourn_inferior ();
|
||||
|
||||
/* Detach thread_db target ops if not dealing with a statically
|
||||
linked threaded program. This allows a corefile to be debugged
|
||||
after finishing debugging of a threaded program. At present,
|
||||
debugging a statically-linked threaded program is broken, but
|
||||
the check is added below in the event that it is fixed in the
|
||||
future. */
|
||||
if (!keep_thread_db)
|
||||
{
|
||||
unpush_target (&thread_db_ops);
|
||||
using_thread_db = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user