]> sourceware.org Git - glibc.git/commitdiff
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 b8a193ea0980166ac3741a2eac1f3d642c543d67..2f29a88309e4650d289ad199337acb5c20147bb2 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 d9c315c1da3224abf94920784d48b1457dacd071..de34e217f9fbe26944d9b4ccf87647fef4e43751 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);
 
 
This page took 0.05161 seconds and 5 git commands to generate.