summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-07-24 18:57:32 +0000
committerDaniel Jacobowitz <drow@false.org>2006-07-24 18:57:32 +0000
commit3f64f7b1c773929215cd1284c891f371e4fc625f (patch)
treebb5f78f6160cd58386e2dd50a776d206651eb4f3
parent6aec2e11e511d46bd65e1d608254bc18ef9f5ea9 (diff)
downloadbinutils-gdb-3f64f7b1c773929215cd1284c891f371e4fc625f.tar.gz
* linux-thread-db.c (thread_db_wait): Remove libthread_db
after exec events.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/linux-thread-db.c9
2 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8ec738ae701..062c2b912ec 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2006-07-24 Jan Kratochvil <jan.kratochvil@redhat.com>
+ Daniel Jacobowitz <dan@codesourcery.com>
+
+ * linux-thread-db.c (thread_db_wait): Remove libthread_db
+ after exec events.
+
2006-07-24 Daniel Jacobowitz <dan@codesourcery.com>
* NEWS: Mention Windows cross debugging support.
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c
index c49c89585b4..d91a894166d 100644
--- a/gdb/linux-thread-db.c
+++ b/gdb/linux-thread-db.c
@@ -875,6 +875,15 @@ thread_db_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
if (ourstatus->kind == TARGET_WAITKIND_EXITED)
return pid_to_ptid (-1);
+ if (ourstatus->kind == TARGET_WAITKIND_EXECD)
+ {
+ remove_thread_event_breakpoints ();
+ unpush_target (&thread_db_ops);
+ using_thread_db = 0;
+
+ return pid_to_ptid (GET_PID (ptid));
+ }
+
if (ourstatus->kind == TARGET_WAITKIND_STOPPED
&& ourstatus->value.sig == TARGET_SIGNAL_TRAP)
/* Check for a thread event. */