Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-26 | A few more little cleanups | Eric Andersen | |
2002-02-26 | Don't redefine stuff | Eric Andersen | |
2002-02-26 | Fix redefine problem | Eric Andersen | |
2002-02-26 | Fix redefinition problem | Eric Andersen | |
2002-02-26 | Proper support for setting h_errno | Eric Andersen | |
2002-02-25 | Try this version instead... | Eric Andersen | |
2002-02-23 | Support isblank() | Eric Andersen | |
2002-02-21 | Miles Bader noticed that I'd messed up by always pulling | Eric Andersen | |
errno in, regardless of whether it is being used... -Erik | |||
2002-02-20 | This is a bit less messy | Eric Andersen | |
2002-02-20 | Merge in the pthread library. This is the linuxthreads library taken from | Eric Andersen | |
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 | |||
2002-02-18 | Rename __stdio_close_all to __stdio_flush_buffers. Eliminate an | Eric Andersen | |
unnecessary variable | |||
2002-02-18 | Make shared libs properly list the correct ld.so in the interp | Eric Andersen | |
field by being sneaky. | |||
2002-02-18 | Support strong_alias and begin merging usage of weak_function | Eric Andersen | |
2002-02-05 | OOps. | Eric Andersen | |
2002-02-02 | Add in support for the Hitach H8/300H architecture, | Eric Andersen | |
contributed by Yoshinori Sato <qzb04471@nifty.ne.jp> | |||
2002-02-02 | Add in a weak for __adjtime | Eric Andersen | |
2002-01-17 | Added insque/remque support | David McCullough | |
2002-01-17 | Don't print an error if the utmp file doesn't exist, getutent will return | David McCullough | |
NULL as expected. | |||
2002-01-09 | Doh! I broke getmntent when I added getmntent_r! This fixes it. | Eric Andersen | |
-Erik | |||
2002-01-09 | Allow people to exclude regex code, since it is huge (27k) | Eric Andersen | |
2002-01-09 | Fix duplicate of timezone | Eric Andersen | |
2002-01-08 | Scrub malloc handling | Eric Andersen | |
2002-01-06 | Support statvfs and statfs. Added getmntent_r (and made it use | Eric Andersen | |
strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik | |||
2001-12-19 | Update my email address. I am no longer andersen@lineo.com | Eric Andersen | |
2001-11-24 | Sync regex with glibc 2.2.4. I need to add an option to select | Eric Andersen | |
a minamalist replacement. Coming soon... -Erik | |||
2001-11-21 | Adjust naming for __FORCE_GLIBC__ to __FORCE_GLIBC and add | Eric Andersen | |
support for __FORCE_NOGLIBC per Brian Stafford <brian.stafford@office-logic.com> | |||
2001-11-20 | A few symbols needed for testing | Eric Andersen | |
2001-11-14 | Scrub up some lingering problems preventing readdir64 from working | Eric Andersen | |
and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik | |||
2001-10-17 | In theory, this adds readdir64 and friends. Dunno if they | Eric Andersen | |
work yet or not.... -Erik | |||
2001-10-11 | Patch from Miles Bader <miles@lsi.nec.co.jp> to support the v850. | Eric Andersen | |
He sent this patch to me a month ago, but I forgot to apply it... | |||
2001-10-04 | With all the headerfile changes, some functions didn't get there arg types | David McCullough | |
fixed up. | |||
2001-09-27 | Update to accomodate the header file changes | Eric Andersen | |
2001-09-15 | Oops | Eric Andersen | |
2001-09-15 | Recurse into 'file' | Eric Andersen | |
2001-09-15 | Add lockf | Eric Andersen | |
2001-09-06 | Patch from Andrew Ip <aip@cwlinux.com> to add ftime, | Eric Andersen | |
allowing openssl to be built. | |||
2001-08-17 | Fix a silly bug with the header file | Eric Andersen | |
2001-08-14 | use some #defines internal to the ctype functions to eliminate them | Eric Andersen | |
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 | |||
2001-08-09 | Make sure the weak aliases are defined before the functions/vars | David McCullough | |
they use as stubs, otherwise, some compilers (ie., m68k-elf) tie them to the local symbols and the weak aliases do not work. | |||
2001-07-01 | These zero-length files apparently weren't deleted from cvs. | Manuel Novoa III | |
2001-06-26 | ANSI/ISO specifies that no library function sets errno to 0. | Manuel Novoa III | |
2001-06-26 | Looks like we lost clearing errno | Eric Andersen | |
2001-06-25 | Remove simulated d_type support for getdents and the dirent struct, and use | Manuel Novoa III | |
the straight getdents syscall instead of the wrapper (which leaked memory). | |||
2001-06-12 | Cleanup the toploevel makefile handing of shared libs. Add weak_alias | Eric Andersen | |
define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik | |||
2001-06-07 | The m68k-elf compiler chokes on this code when compiling for PIC as | David McCullough | |
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. | |||
2001-06-02 | Add locale-enabled strcoll function from vodz, plus supporting tool. | Manuel Novoa III | |
2001-06-01 | Put the locale stuff back how it was till we can get a proper implementation | Eric Andersen | |
that doesn't suck so badly. -Erik | |||
2001-05-28 | Make selection of uClibc floating point support in printf, etc. seperate | Manuel Novoa III | |
from libm float function support. Also, move all Config files out of the main directory. | |||
2001-05-26 | Fix regex support to be compatible with 4.2 BSD regex library. This is | Eric Andersen | |
the last bit that was needed to get util-linux to compile. | |||
2001-05-26 | Add in message queue support, based on work from <tapu@371.net>. | Eric Andersen | |
This is required to compile util-linux |