* init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.
This commit is contained in:
Ulrich Drepper 2002-12-06 21:15:46 +00:00
parent d3c9f89525
commit a4548cea4a
2 changed files with 3 additions and 1 deletions

View 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.

View 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);