summaryrefslogtreecommitdiffstats
path: root/libc/misc/internals/errno.c
Commit message (Collapse)AuthorAgeFilesLines
* errno: hide __libc_resp, __libc_errno, and __libc_h_errnoKhem Raj2010-02-011-3/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* errno.c: add tls versions of errno and h_errnoAustin Foxley2009-09-261-1/+12
| | | | Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* convert // comments to /**/; remove empty #if/#endif pairs. no code changesDenys Vlasenko2009-09-181-2/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-181-2/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-201-2/+2
| | | | | Appears to build fine (several .configs tried)
* Fix a build break due to errno and h_errno being unresolved symbols. Rob Landley2007-03-071-2/+2
| | | | (No idea if this is the right fix but it's something for now.)
* redo errno handling so that it should work both in thread and non-threaded ↵Mike Frysinger2007-02-211-15/+8
| | | | situations
* use weak_alias() for data symbols, not strong_alias()Mike Frysinger2006-05-041-2/+2
|
* Last relocs jump and global data, (even locales) that I could remove are ↵Peter S. Mazinger2006-01-161-2/+7
| | | | gone from libc. The remaining are left as exercise for others ;-)
* Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵Peter S. Mazinger2005-12-161-2/+2
| | | | of __attribute__ ...
* Try this version instead...Eric Andersen2002-02-251-4/+7
|
* This is a bit less messyEric Andersen2002-02-201-26/+11
|
* Merge in the pthread library. This is the linuxthreads library taken fromEric Andersen2002-02-201-0/+29
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