From 6c482b8720cea840a16af1661d172504d94516e6 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 19 Dec 2001 19:16:50 +0000 Subject: [PATCH] * infttrate.c (child_acknowledge_created_inferior): Pass correct argument to add_thread. (update_thread_state_after_attach): Likewise. --- gdb/ChangeLog | 6 ++++++ gdb/infttrace.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ddb8c84189..69fa7641fc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Wed Dec 19 12:18:57 2001 Jeffrey A Law (law@redhat.com) + + * infttrate.c (child_acknowledge_created_inferior): Pass + correct argument to add_thread. + (update_thread_state_after_attach): Likewise. + 2001-12-19 Fernando Nasser * config/arm/tm-arm.h: Properly define SOFTWARE_SINGLE_STEP_P. diff --git a/gdb/infttrace.c b/gdb/infttrace.c index a920ead03c..c3216a5f0e 100644 --- a/gdb/infttrace.c +++ b/gdb/infttrace.c @@ -3123,7 +3123,7 @@ child_acknowledge_created_inferior (int pid) * the process safely to ask what it is. Anyway, we'll * add it when it gets the EXEC event. */ - add_thread (pid); /* in thread.c */ + add_thread (pid_to_ptid (pid)); /* in thread.c */ /* We can now set the child's ttrace event mask. */ @@ -4764,7 +4764,7 @@ update_thread_state_after_attach (int pid, attach_continue_t kind_of_go) } } - add_thread (tid); /* in thread.c */ + add_thread (pid_to_ptid (pid)); /* in thread.c */ } #ifdef PARANOIA