mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2002-12-06 Ulrich Drepper <drepper@redhat.com>
|
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.
|
* Makefile (tests): Comment out tst-locale2 for now.
|
||||||
(CFLAGS-flockfile.c, CFLAGS-funlockfile.c): Define to -D_IO_MTSAFE_IO.
|
(CFLAGS-flockfile.c, CFLAGS-funlockfile.c): Define to -D_IO_MTSAFE_IO.
|
||||||
|
|
||||||
|
@ -124,7 +124,7 @@ __pthread_initialize_minimal (void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Initialize the list of all running threads with the main thread. */
|
/* 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);
|
list_add (&pd->header.data.list, &__stack_user);
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user