diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-26 17:08:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-26 17:08:49 +0000 |
commit | 36069f14e85e3df8edfe049c3517c69bc9905255 (patch) | |
tree | 3687d8f88a0806a3eec3755d14cd5c677a44a121 /linuxthreads | |
parent | a421d762a8c85203259c9e7dc5b090e3fc098379 (diff) | |
download | glibc-36069f14e85e3df8edfe049c3517c69bc9905255.tar.gz glibc-36069f14e85e3df8edfe049c3517c69bc9905255.tar.xz glibc-36069f14e85e3df8edfe049c3517c69bc9905255.zip |
(__pthread_initialize_manager): Remove one last p_multiple_threads call.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index d13207f4ee..6211124b31 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -622,7 +622,7 @@ int __pthread_initialize_manager(void) mgr->p_header.data.self = mgr; mgr->p_header.data.multiple_threads = 1; #elif TLS_MULTIPLE_THREADS_IN_TCB - p_multiple_threads (mgr) = 1; + mgr->p_multiple_threads = 1; #endif mgr->p_lock = &__pthread_handles[1].h_lock; # ifndef HAVE___THREAD |