aboutsummaryrefslogtreecommitdiff
path: root/htl/pt-self.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 12:19:29 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 12:19:29 +0200
commit53da64d1cf3694a132287d1ab6e9655031124e32 (patch)
tree348cdf0a18887d4a606e30ee10d76217cfe33092 /htl/pt-self.c
parent644aa127b9b42a899a12b6ccc6644bc035c231e3 (diff)
downloadglibc-53da64d1cf3694a132287d1ab6e9655031124e32.zip
glibc-53da64d1cf3694a132287d1ab6e9655031124e32.tar.gz
glibc-53da64d1cf3694a132287d1ab6e9655031124e32.tar.bz2
htl: Initialize ___pthread_self early
When using jemalloc, malloc() needs to use TSD, while libpthread initialization needs malloc(). Having ___pthread_self set early to some static storage allows TSD to work early, thus allowing jemalloc and libpthread to initialize together. This incidentaly simplifies __pthread_enable/disable_asynccancel and __pthread_self, now that ___pthread_self is always initialized.
Diffstat (limited to 'htl/pt-self.c')
-rw-r--r--htl/pt-self.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/htl/pt-self.c b/htl/pt-self.c
index f7e9cb8..1278908 100644
--- a/htl/pt-self.c
+++ b/htl/pt-self.c
@@ -24,15 +24,7 @@
pthread_t
__pthread_self (void)
{
- struct __pthread *self;
-
- if (___pthread_self == NULL)
- /* We are not initialized yet, we are the first thread. */
- return 1;
-
- self = _pthread_self ();
- assert (self != NULL);
-
+ struct __pthread *self = _pthread_self ();
return self->thread;
}