aboutsummaryrefslogtreecommitdiff
path: root/libpthread/linuxthreads/errno.c
AgeCommit message (Collapse)AuthorFilesLines
2016-05-18remove linuxthreads.new, rename linuxthreads.oldWaldemar Brodkorb1-14/+1
Linuxthreads.new isn't really useful with the existence of NPTL/TLS for well supported architectures. There is no reason to use LT.new for ARM/MIPS or other architectures supporting NPTL/TLS. It is not available for noMMU architectures like Blackfin or FR-V. To simplify the live of the few uClibc-ng developers, LT.new is removed and LT.old is renamed to LT. LINUXTHREADS_OLD -> UCLIBC_HAS_LINUXTHREADS
2015-02-14Revert "resolve merge"Waldemar Brodkorb1-1/+14
This reverts commit 6b6ede3d15f04fe825cfa9f697507457e3640344.
2015-02-14resolve mergeWaldemar Brodkorb1-14/+1
2012-06-15linuxthreads: use __UCLIBC_HAS_TLS__ consistentlyPeter S. Mazinger1-1/+1
replace USE_TLS, HAVE___THREAD and USE___THREAD with __UCLIBC_HAS_TLS__ Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2006-01-31s/IS_IN_linuxthreads/IS_IN_libpthread/, some prototypes, correct ↵Peter S. Mazinger1-0/+2
Makefile.in, disable __res_state, unavailable in resolv.h
2006-01-31initial import of latest linuxthreadsMike Frysinger1-0/+46
2005-11-15rename current stable linuxthreads to linuxthreads.old to prepare for import ↵Mike Frysinger1-37/+0
of latest glibc version
2005-09-08sync code style with glibcMike Frysinger1-6/+8
2002-08-19Based on work by Stefan Allius, arrange for early initialization ofEric Andersen1-13/+0
pthread stuff. Also, don't bother building libthread_db unless we are debugging. -Erik
2002-08-08Patch from Stefan Allius and Edie C. Dost:Eric Andersen1-4/+18
In linuxthreads/errno.h the functions __errno_location and __h_errno_location wasn't safe against calling before the library is initialized.
2002-02-20Merge in the pthread library. This is the linuxthreads library taken fromEric Andersen1-0/+34
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik