summaryrefslogtreecommitdiff
path: root/src/locale/uselocale.c
AgeCommit message (Collapse)AuthorLines
2014-06-10replace all remaining internal uses of pthread_self with __pthread_selfRich Felker-1/+1
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.
2013-07-24add ABI compat aliases for a number of locale_t functionsRich Felker-0/+3
2011-05-30implement uselocale function (minimal)Rich Felker-0/+10