Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-30 | Fixup totally broken locking code... No storage for the mutex, | Eric Andersen | |
wrong ifdef macro.. -Erik | |||
2002-05-11 | Oops. Stupid typo. | Eric Andersen | |
2002-05-11 | Implement readdir_r. Audit for proper thread safety and locking. | Eric Andersen | |
-Erik | |||
2002-04-09 | Avoid defining __USE_FILE_OFFSET64, since we do _NOT_ want | Eric Andersen | |
interfaces silently renamed under us or very bad things may happen... -Erik | |||
2002-03-12 | Fix a segfault in scandir for empty directories. After looking over | Eric Andersen | |
our version, I'm adopting the scandir from glibc (with minor changes) instead as it seems simpler and already correct. | |||
2002-02-26 | Don't redefine stuff | Eric Andersen | |
2002-01-08 | Scrub malloc handling | Eric Andersen | |
2001-12-19 | Update my email address. I am no longer andersen@lineo.com | 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-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-05-12 | Ok, this should finish off my massive ro-organization. The source | Eric Andersen | |
tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik | |||
2001-05-08 | Turns out alphasort was totally broken. This fixed one works. | Eric Andersen | |
-Erik | |||
2001-05-08 | A patch from Jon Nelson <jnelson@securepipe.com> to make scandir | Eric Andersen | |
sort things as it is supposed to do. | |||
2001-04-06 | Fix include/errno.h to not use kernel header, and instead use bits/errno.h. | Eric Andersen | |
This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik | |||
2001-03-19 | Add in alphasort (working fine) and scandir (just a stub for now). | Eric Andersen | |
-Erik | |||
2001-03-19 | Move the dirent stuff. I suppose it is system dependant, but then | Eric Andersen | |
it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common |