about summary refs log tree commit diff
path: root/linuxthreads/manager.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-28 09:13:22 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-28 09:13:22 +0000
commitf9b9f291b7bab3368457d3e273584c25a1ccdc0a (patch)
tree831143baf2726d8bfe77042a83d806fdd796045d /linuxthreads/manager.c
parentddd1037e4dd9394cdb89d79cc6a81543cf75f552 (diff)
downloadglibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.tar.gz
glibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.tar.xz
glibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.zip
Update.
	* conform/conformtest.pl: Define $mustprepend{"stdio.h"}.
	* libio/stdio.h: Always define __need___va_list.
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r--linuxthreads/manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c
index 05a0020b63..24e3f75a88 100644
--- a/linuxthreads/manager.c
+++ b/linuxthreads/manager.c
@@ -35,8 +35,8 @@
 
 /* Array of active threads. Entry 0 is reserved for the initial thread. */
 struct pthread_handle_struct __pthread_handles[PTHREAD_THREADS_MAX] =
-{ { LOCK_INITIALIZER, &__pthread_initial_thread, 0},
-  { LOCK_INITIALIZER, &__pthread_manager_thread, 0}, /* All NULLs */ };
+{ { __LOCK_INITIALIZER, &__pthread_initial_thread, 0},
+  { __LOCK_INITIALIZER, &__pthread_manager_thread, 0}, /* All NULLs */ };
 
 /* For debugging purposes put the maximum number of threads in a variable.  */
 const int __linuxthreads_pthread_threads_max = PTHREAD_THREADS_MAX;