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 /posix | |
parent | linux: Add mount_setattr (diff) | |
download | glibc-e070501d12b47e88c1ff8c313f887976fb578938.tar.gz glibc-e070501d12b47e88c1ff8c313f887976fb578938.tar.bz2 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 'posix')
-rw-r--r-- | posix/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/fork.c b/posix/fork.c index 987916a175..cee5ae83c8 100644 --- a/posix/fork.c +++ b/posix/fork.c @@ -45,7 +45,7 @@ __libc_fork (void) requirement for fork (Austin Group tracker issue #62) this is best effort to make is async-signal-safe at least for single-thread case. */ - bool multiple_threads = __libc_single_threaded_internal == 0; + bool multiple_threads = !SINGLE_THREAD_P; uint64_t lastrun; lastrun = __run_prefork_handlers (multiple_threads); |