]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 4 Mar 2003 08:56:12 +0000 (08:56 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 4 Mar 2003 08:56:12 +0000 (08:56 +0000)
* sysdeps/generic/dl-sysdep.h: Add double include protection.

ChangeLog
nptl/ChangeLog
nptl/pthread_create.c

index 5c2c2ec48f96bb99b321c6793bab43c544cb3ccb..90eb8e2234ef3d8736a3745dd5da3d446cf32286 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-03-03  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/generic/dl-sysdep.h: Add double include protection.
+
        * po/tr.po: Update from translation team.
 
        * elf/dl-load.c (_dl_map_object_from_fd): Determine whether there
index c1c695b60f9e4607b9c16c0754a08a0a75222e1d..92183629aae93fe22e6e05587f8b4452f7df46d4 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-04  Ulrich Drepper  <drepper@redhat.com>
+
+       * pthread_create.c (start_thread): Use THREAD_SETMEM to store
+       result of the thread function.
+
 2003-03-03  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/s390/dl-sysdep.h: Removed.  The generic
index 6ed5200e33b15e62e7f873e082cc1d549d78cd56..1d342786f4c9ea46586c33ed4c63adfe92a05a40 100644 (file)
@@ -225,7 +225,7 @@ start_thread (void *arg)
   if (setjmp (pd->cancelbuf) == 0)
     {
       /* Run the code the user provided.  */
-      pd->result = pd->start_routine (pd->arg);
+      THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
     }
 
   /* The thread is exiting now.  */