From df15168cf8baf34fb9c94e19eaa1a5c79c853970 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 10 Jun 2014 04:02:40 -0400 Subject: replace all remaining internal uses of pthread_self with __pthread_self prior to version 1.1.0, the difference between pthread_self (the public function) and __pthread_self (the internal macro or inline function) was that the former would lazily initialize the thread pointer if it was not already initialized, whereas the latter would crash in this case. since lazy initialization is no longer supported, use of pthread_self no longer makes sense; it simply generates larger, slower code. --- src/locale/uselocale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/locale') diff --git a/src/locale/uselocale.c b/src/locale/uselocale.c index 224ef387..4fc5c64e 100644 --- a/src/locale/uselocale.c +++ b/src/locale/uselocale.c @@ -4,7 +4,7 @@ locale_t uselocale(locale_t l) { - pthread_t self = pthread_self(); + pthread_t self = __pthread_self(); locale_t old = self->locale; if (l) self->locale = l; return old; -- cgit v1.2.1