summaryrefslogtreecommitdiffstats
path: root/libc/misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix a segfault in scandir for empty directories. After looking overEric Andersen2002-03-121-65/+77
| | | | | our version, I'm adopting the scandir from glibc (with minor changes) instead as it seems simpler and already correct.
* Swap in the new stdio code.Manuel Novoa III2002-03-1210-660/+75
|
* Avoid forced -lpthread lnkage when threading is enabledEric Andersen2002-03-091-1/+1
|
* A few more little cleanupsEric Andersen2002-02-261-2/+2
|
* Don't redefine stuffEric Andersen2002-02-264-10/+31
|
* Fix redefine problemEric Andersen2002-02-261-2/+5
|
* Fix redefinition problemEric Andersen2002-02-264-12/+40
|
* Proper support for setting h_errnoEric Andersen2002-02-263-2/+17
|
* Try this version instead...Eric Andersen2002-02-251-4/+7
|
* Support isblank()Eric Andersen2002-02-233-3/+21
|
* Miles Bader noticed that I'd messed up by always pullingEric Andersen2002-02-211-4/+2
| | | | | errno in, regardless of whether it is being used... -Erik
* 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-209-17/+246
| | | | | | | | 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
* Rename __stdio_close_all to __stdio_flush_buffers. Eliminate anEric Andersen2002-02-181-6/+4
| | | | unnecessary variable
* Make shared libs properly list the correct ld.so in the interpEric Andersen2002-02-181-3/+12
| | | | field by being sneaky.
* Support strong_alias and begin merging usage of weak_functionEric Andersen2002-02-181-9/+26
|
* OOps.Eric Andersen2002-02-051-1/+0
|
* Add in support for the Hitach H8/300H architecture,Eric Andersen2002-02-021-2/+2
| | | | contributed by Yoshinori Sato <qzb04471@nifty.ne.jp>
* Add in a weak for __adjtimeEric Andersen2002-02-021-0/+2
|
* Added insque/remque supportDavid McCullough2002-01-173-1/+92
|
* Don't print an error if the utmp file doesn't exist, getutent will returnDavid McCullough2002-01-171-1/+0
| | | | NULL as expected.
* Doh! I broke getmntent when I added getmntent_r! This fixes it.Eric Andersen2002-01-091-5/+0
| | | | -Erik
* Allow people to exclude regex code, since it is huge (27k)Eric Andersen2002-01-091-1/+4
|
* Fix duplicate of timezoneEric Andersen2002-01-091-4/+0
|
* Scrub malloc handlingEric Andersen2002-01-082-16/+25
|
* Support statvfs and statfs. Added getmntent_r (and made it useEric Andersen2002-01-068-20/+404
| | | | | strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-1917-0/+17
|
* Sync regex with glibc 2.2.4. I need to add an option to selectEric Andersen2001-11-241-4300/+6942
| | | | | a minamalist replacement. Coming soon... -Erik
* Adjust naming for __FORCE_GLIBC__ to __FORCE_GLIBC and addEric Andersen2001-11-211-1/+1
| | | | | support for __FORCE_NOGLIBC per Brian Stafford <brian.stafford@office-logic.com>
* A few symbols needed for testingEric Andersen2001-11-202-2/+9
|
* Scrub up some lingering problems preventing readdir64 from workingEric Andersen2001-11-1412-18/+38
| | | | | | and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik
* In theory, this adds readdir64 and friends. Dunno if theyEric Andersen2001-10-176-3/+176
| | | | | work yet or not.... -Erik
* Patch from Miles Bader <miles@lsi.nec.co.jp> to support the v850.Eric Andersen2001-10-111-5/+5
| | | | He sent this patch to me a month ago, but I forgot to apply it...
* With all the headerfile changes, some functions didn't get there arg typesDavid McCullough2001-10-041-1/+1
| | | | fixed up.
* Update to accomodate the header file changesEric Andersen2001-09-2710-10/+18
|
* OopsEric Andersen2001-09-151-1/+1
|
* Recurse into 'file'Eric Andersen2001-09-151-2/+2
|
* Add lockfEric Andersen2001-09-152-0/+113
|
* Patch from Andrew Ip <aip@cwlinux.com> to add ftime,Eric Andersen2001-09-062-1/+37
| | | | allowing openssl to be built.
* Fix a silly bug with the header fileEric Andersen2001-08-171-1/+1
|
* use some #defines internal to the ctype functions to eliminate themEric Andersen2001-08-141-0/+32
| | | | | | | calling other tiny ctype functions. Now all ctype funcs will end up with no extern references, which ends up shrinking both the uClibc shared lib and shrinking client code. -Erik
* Make sure the weak aliases are defined before the functions/varsDavid McCullough2001-08-091-14/+14
| | | | | they use as stubs, otherwise, some compilers (ie., m68k-elf) tie them to the local symbols and the weak aliases do not work.
* These zero-length files apparently weren't deleted from cvs.Manuel Novoa III2001-07-012-0/+0
|
* ANSI/ISO specifies that no library function sets errno to 0.Manuel Novoa III2001-06-261-2/+0
|
* Looks like we lost clearing errnoEric Andersen2001-06-261-0/+2
|
* Remove simulated d_type support for getdents and the dirent struct, and useManuel Novoa III2001-06-251-11/+1
| | | | the straight getdents syscall instead of the wrapper (which leaked memory).
* Cleanup the toploevel makefile handing of shared libs. Add weak_aliasEric Andersen2001-06-121-3/+12
| | | | | | define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik
* The m68k-elf compiler chokes on this code when compiling for PIC asDavid McCullough2001-06-071-1129/+1128
| | | | | | | | | | | | | | | | compile_regex is one big function (relative function calls further than cpu32 can do). The solution was to re-order the code a little to reduce the size of these relative calls. So the total sum of the changes is: * Move compile_regex to the end of the file * make store_op1 an inline Unfortunately CVS diff doesn't show this and makes it look like the whole file has been severely hacked. It hasn't.
* Add locale-enabled strcoll function from vodz, plus supporting tool.Manuel Novoa III2001-06-023-76/+248
|
* Put the locale stuff back how it was till we can get a proper implementationEric Andersen2001-06-0111-1222/+0
| | | | | that doesn't suck so badly. -Erik