From: Ulrich Drepper Date: Tue, 21 Dec 1999 23:50:51 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/pre-glibc-2_1_3~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46fd4f671c45b70909e03160aa4568db5f6c8556;p=platform%2Fupstream%2Fglibc.git Update. 1999-12-21 Ulrich Drepper * manager.c (pthread_handle_create): Set p_pid of new thread before calling the callback function to report a new thread. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index e994dcc..adeaf40 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +1999-12-21 Ulrich Drepper + + * manager.c (pthread_handle_create): Set p_pid of new thread + before calling the callback function to report a new thread. + 1999-12-20 Andreas Jaeger * pthread.c (pthread_initialize): Move getrlimit call after diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index 0cbb426..9f9585d 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -445,6 +445,11 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr, new_thread->p_eventbuf.eventnum = TD_CREATE; __pthread_last_event = new_thread; + /* We have to set the PID here since the callback function + in the debug library will need it and we cannot guarantee + the child got scheduled before the debugger. */ + new_thread->p_pid = pid; + /* Now call the function which signals the event. */ __linuxthreads_create_event ();