Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-31 | don't include wchar.h if WCHAR is disabled | Peter S. Mazinger | |
2006-01-30 | Change the only bcopy user to memmove and remove internal version of bcopy | Peter S. Mazinger | |
2006-01-29 | sync with glibc and rename local socket var to _socket | Mike Frysinger | |
2006-01-29 | sync func def with glibc and dont include sys/socket.h since we dont use ↵ | Mike Frysinger | |
socket() | |||
2006-01-29 | sync comment with glibc and dont include sys/socket.h since we dont use socket() | Mike Frysinger | |
2006-01-29 | rename to match glibc | Mike Frysinger | |
2006-01-29 | rename to match glibc | Mike Frysinger | |
2006-01-29 | sync with glibc and rename socket vars to _socket | Mike Frysinger | |
2006-01-29 | sync iruserfopen() prototype with glibc and remove double setting of cp to ↵ | Mike Frysinger | |
NULL by Bernard Fischer | |||
2006-01-29 | Bernhard Fischer writes: remove unused variable __rcmd_errstr | Mike Frysinger | |
2006-01-29 | small sync with glibc | Mike Frysinger | |
2006-01-26 | Get rid of missing prototype warnings | Peter S. Mazinger | |
2006-01-24 | Convert all the strong_aliases to weak that are cancelable in libpthread | Peter S. Mazinger | |
2006-01-24 | Use wildcard *.c for full rpc, update copyright | Peter S. Mazinger | |
2006-01-24 | s/svc_auth_unix.c/svc_authux.c/ | Peter S. Mazinger | |
2006-01-24 | s/rpc_callmsg.c/rpc_cmsg.c/ for non-full rpc as well | Peter S. Mazinger | |
2006-01-23 | sync with glibc | Mike Frysinger | |
2006-01-23 | Add some attribute_noreturn, replace __attribute__ ((noreturn)) as well | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-20 | disable deprecated warnings for some files | Mike Frysinger | |
2006-01-16 | Last relocs jump and global data, (even locales) that I could remove are ↵ | Peter S. Mazinger | |
gone from libc. The remaining are left as exercise for others ;-) | |||
2006-01-16 | some global data relocs gone | Peter S. Mazinger | |
2006-01-15 | make gcc4 happy w/ hidden_def/proto, correct some typos | Peter S. Mazinger | |
2006-01-14 | I should also test w/ ipv6, missed that, thx SpanKY | Peter S. Mazinger | |
2006-01-14 | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | |
2006-01-14 | Correct 2 issues if ipv6 is enabled found by SpanKY, thx | Peter S. Mazinger | |
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2006-01-14 | make sure linux/types.h doesnt screw us up | Mike Frysinger | |
2006-01-09 | dont include linux/types.h | Mike Frysinger | |
2006-01-08 | declare static | Mike Frysinger | |
2006-01-08 | hide the internal __in6addr_any/__in6addr_loopback symbols | Mike Frysinger | |
2006-01-08 | hide internal ahostbuf symbol | Mike Frysinger | |
2006-01-08 | hide internal symbols | Mike Frysinger | |
2006-01-08 | hide internal _net_stayopen symbol | Mike Frysinger | |
2006-01-08 | hide internal funcs to kill off more relocs | Mike Frysinger | |
2006-01-08 | kill off two more relocs | Mike Frysinger | |
2006-01-08 | fix warnings when __NR_socketcall is not defined and building recv() | Mike Frysinger | |
2006-01-06 | Allow compiling newly added if_index.c (at least on 2.4), missing ↵ | Peter S. Mazinger | |
__u32/__u16/__s32 | |||
2006-01-06 | as weber notes in Bug 99: | Mike Frysinger | |
if_nameindex doesnt list all of my interfaces! this is because we are still using the old style ioctl(SIOCGIFINDEX) for gathering interface names/indexes. while this code is pretty small, the kernel does not return all interfaces via this method. so we import the new style netlink code from glibc and make it optional so those people who need the full functionality can get it. | |||
2006-01-06 | create __if_nametoindex hidden alias and use it | Mike Frysinger | |
2006-01-06 | rework the alloca() loop slightly to save some space | Mike Frysinger | |
2006-01-06 | sync with glibc | Mike Frysinger | |
2006-01-06 | update libc lock functions to new pthread forwarding | Mike Frysinger | |
2006-01-03 | Get rid of tolower/toupper jump reloc, correct tow* for XLOCALE | Peter S. Mazinger | |
2005-12-30 | use errno.h not sys/errno.h as pointed out by sjhill | 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-27 | kill off simple unused warnings | Mike Frysinger | |
2005-12-27 | kill off simple unused warnings | Mike Frysinger | |
2005-12-27 | kill off simple unused warnings | Mike Frysinger | |
2005-12-27 | 2005-12-15 Aubrey.Li <aubreylee@gmail.com> 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. I found the following issue. In the file "./uClibc/libc/inet/rpc/auth_unix.c" int max_nr_groups = sysconf (_SC_NGROUPS_MAX); gid_t gids[max_nr_groups]; 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 */ OK, here we can know max_nr_groups is assigned to 65536, that means a huge matrix "gids[65536] is in the function **authunix_create_default**. My method is doing it by malloc, the patch as follows. |