diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-10 10:31:41 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-10 10:31:41 +0200 |
commit | 0df5d8d404fbf6a7802737b0f9d32ab3376cec86 (patch) | |
tree | e6ff4e79e4be08b092e07a5127254373e42a3231 /nptl/pthread_cancel.c | |
parent | 29d4d1be681fee2fa7cf23205b6d993a3b2a4566 (diff) | |
download | glibc-0df5d8d404fbf6a7802737b0f9d32ab3376cec86.tar.gz glibc-0df5d8d404fbf6a7802737b0f9d32ab3376cec86.tar.xz glibc-0df5d8d404fbf6a7802737b0f9d32ab3376cec86.zip |
nptl: Eliminate __pthread_multiple_threads
It is no longer needed after the SINGLE_THREADED_P consolidation. Tested-by: Carlos O'Donell <carlos@redhat.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/pthread_cancel.c')
-rw-r--r-- | nptl/pthread_cancel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_cancel.c b/nptl/pthread_cancel.c index 2cab8f0a34..fd04bedf6c 100644 --- a/nptl/pthread_cancel.c +++ b/nptl/pthread_cancel.c @@ -90,7 +90,7 @@ __pthread_cancel (pthread_t th) points get executed. */ THREAD_SETMEM (THREAD_SELF, header.multiple_threads, 1); #ifndef TLS_MULTIPLE_THREADS_IN_TCB - __pthread_multiple_threads = __libc_multiple_threads = 1; + __libc_multiple_threads = 1; #endif } /* Mark the thread as canceled. This has to be done |