Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 6 Dec 2002 21:15:46 +0000 (21:15 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 6 Dec 2002 21:15:46 +0000 (21:15 +0000)
* init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.

nptl/ChangeLog
nptl/init.c

index b8a193e..2f29a88 100644 (file)
@@ -1,5 +1,7 @@
 2002-12-06  Ulrich Drepper  <drepper@redhat.com>
 
+       * init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.
+
        * Makefile (tests): Comment out tst-locale2 for now.
        (CFLAGS-flockfile.c, CFLAGS-funlockfile.c): Define to -D_IO_MTSAFE_IO.
 
index d9c315c..de34e21 100644 (file)
@@ -124,7 +124,7 @@ __pthread_initialize_minimal (void)
 #endif
 
   /* Initialize the list of all running threads with the main thread.  */
-  INIT_LIST_HEAD (__stack_user);
+  INIT_LIST_HEAD (&__stack_user);
   list_add (&pd->header.data.list, &__stack_user);