diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-06-07 13:09:40 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-07-05 10:14:47 -0300 |
commit | e070501d12b47e88c1ff8c313f887976fb578938 (patch) | |
tree | 8ee321cfb78050dde3c6e84e9a9da9b6eeaf0963 /nptl/pthread_cancel.c | |
parent | af1aa36c617d72e80ff6b268bf927b6642d90823 (diff) | |
download | glibc-e070501d12b47e88c1ff8c313f887976fb578938.tar.gz glibc-e070501d12b47e88c1ff8c313f887976fb578938.tar.xz glibc-e070501d12b47e88c1ff8c313f887976fb578938.zip |
Replace __libc_multiple_threads with __libc_single_threaded
And also fixes the SINGLE_THREAD_P macro for SINGLE_THREAD_BY_GLOBAL, since header inclusion single-thread.h is in the wrong order, the define needs to come before including sysdeps/unix/sysdep.h. The macro is now moved to a per-arch single-threade.h header. The SINGLE_THREAD_P is used on some more places. Checked on aarch64-linux-gnu and x86_64-linux-gnu.
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 e67b2df5cc..459317df49 100644 --- a/nptl/pthread_cancel.c +++ b/nptl/pthread_cancel.c @@ -161,7 +161,7 @@ __pthread_cancel (pthread_t th) points get executed. */ THREAD_SETMEM (THREAD_SELF, header.multiple_threads, 1); #ifndef TLS_MULTIPLE_THREADS_IN_TCB - __libc_multiple_threads = 1; + __libc_single_threaded_internal = 0; #endif } while (!atomic_compare_exchange_weak_acquire (&pd->cancelhandling, &oldval, |