Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-11 | Aurelien Jacobs writes: | Mike Frysinger | |
The kernel include guard that uClibc rely on for POSIX_TYPES_H on ppc has changed in linux-2.6.15. Here is a trivial patch to fix this issue. | |||
2006-01-10 | remove unused symbols | Mike Frysinger | |
2006-01-10 | more fixes by Thomas Chou in Bug 618 | Mike Frysinger | |
2006-01-10 | more fixes by Thomas Chou in Bug 618 | Mike Frysinger | |
2006-01-10 | just define _GNU_SOURCE | Mike Frysinger | |
2006-01-09 | Hope I have it correct now w/ native gcc4 ssp | Peter S. Mazinger | |
2006-01-09 | update for newer binutils | Mike Frysinger | |
2006-01-09 | dont include linux/types.h | Mike Frysinger | |
2006-01-08 | fix errno handling with some magical hacks | Mike Frysinger | |
2006-01-08 | create a hidden internal pagesize symbol for libc usage | Mike Frysinger | |
2006-01-08 | create hidden alias for truncate/ftruncate and use those in the 64bit versions | Mike Frysinger | |
2006-01-08 | add missing hidden alias for 64bit hosts | Mike Frysinger | |
2006-01-08 | fix building on 64bit hosts | Mike Frysinger | |
2006-01-08 | stat update | Mike Frysinger | |
2006-01-08 | just define the macros all the time | Mike Frysinger | |
2006-01-08 | update to parisc cvs | Mike Frysinger | |
2006-01-08 | include prototype for __syscall_rt_sigaction | Mike Frysinger | |
2006-01-06 | Allow to build gcc/libstdc++ w/ LOCALE enabled, XLOCALE probably won't work ↵ | Peter S. Mazinger | |
though | |||
2006-01-06 | use hidden read/write symbols | Mike Frysinger | |
2006-01-05 | grab syscall macros from linux headers | Mike Frysinger | |
2006-01-05 | use tabs for whitespace | Mike Frysinger | |
2006-01-05 | sync Joseph S. Myers fixes from glibc for proper clobbers | Mike Frysinger | |
2006-01-05 | sync Joseph S. Myers fixes from glibc for a better NAN define | Mike Frysinger | |
2006-01-05 | sync __SYSCALL_CLOBBERS macro from glibc | Mike Frysinger | |
2006-01-05 | implement syscall6 | Mike Frysinger | |
2006-01-05 | remove duplicate ; | Mike Frysinger | |
2006-01-04 | one reloc less, uninline, should save some space | Peter S. Mazinger | |
2006-01-04 | need our own version to prevent warnings | Mike Frysinger | |
2006-01-04 | update build files | Mike Frysinger | |
2006-01-04 | update buildsystem to new style | Mike Frysinger | |
2006-01-04 | Bug 618, Thomas Chou: update crt to new 0.9.28 uClibc style | Mike Frysinger | |
2006-01-04 | unused | Mike Frysinger | |
2006-01-04 | now we can safely declare these hidden | Mike Frysinger | |
2006-01-04 | tweak __progname handling some more since some [bad] apps actually try and ↵ | Mike Frysinger | |
use it | |||
2006-01-04 | use weak handling instead of .set | Mike Frysinger | |
2006-01-04 | kill off some unused warnings | Mike Frysinger | |
2006-01-04 | if arch doesnt provide _syscall6(), we need to alias the 64bit version | Mike Frysinger | |
2006-01-03 | Remove textrel | Peter S. Mazinger | |
2006-01-02 | Remove fpu_control.h handling as well | Peter S. Mazinger | |
2006-01-02 | fpu_control.h is handled generally in topdir/Makefile.in, remove rule for it | Peter S. Mazinger | |
2006-01-01 | previous st_dev change from unsigned long (4bytes) to __dev_t (8bytes) ↵ | Mike Frysinger | |
needed to shrink the pads as well to maintain ABI compat | |||
2005-12-30 | update to new build system | Mike Frysinger | |
2005-12-30 | Bug 616, Thomas Chou: update crt to new 0.9.28 uClibc style | Mike Frysinger | |
2005-12-30 | use errno.h not sys/errno.h as pointed out by sjhill | Mike Frysinger | |
2005-12-29 | hide the internal libc pthread_mutex funcs | Mike Frysinger | |
2005-12-29 | pointless whitespace touchups | Mike Frysinger | |
2005-12-28 | make sure we handle the (malloc(0)==NULL) case as Aubrey points out via the ↵ | Mike Frysinger | |
e-mail list | |||
2005-12-28 | include grp.h just for fun | Mike Frysinger | |
2005-12-27 | tweak prototypes to match the exported versions | Mike Frysinger | |
2005-12-27 | Aubrey writes: | Mike Frysinger | |
When I mounted nfs on my target, the kernel crashed. And I found it was caused by stack overflow. When I digged into it. And I found not only "setgroups.c" but "getgroups.c" have the matrix (__kernel_gid_t kernel_groups[n]) on the stack which can be very large because "n" can be assigned to NGROUPS_MAX. And, NGROUPS_MAX is defined in the file "./linux-2.6.x/include/linux/limits.h" #define NGROUPS_MAX 65536 /* supplemental group IDs are available */ I also changed it to do malloc. |