about summary refs log tree commit diff
path: root/elf/tst-single_threaded-static.c
Commit message (Collapse)AuthorAgeFilesLines
* Add the __libc_single_threaded variableFlorian Weimer2020-07-061-0/+29
The variable is placed in libc.so, and it can be true only in an outer libc, not libcs loaded via dlmopen or static dlopen. Since thread creation from inner namespaces does not work, pthread_create can update __libc_single_threaded directly. Using __libc_early_init and its initial flag, implementation of this variable is very straightforward. A future version may reset the flag during fork (but not in an inner namespace), or after joining all threads except one. Reviewed-by: DJ Delorie <dj@redhat.com>