Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2005-12-27 | kill off minor warning | Mike Frysinger | |
2005-12-16 | Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵ | Peter S. Mazinger | |
of __attribute__ ... | |||
2005-12-16 | Convert some users and get rid of __rpc_thread_createerr jump reloc, this ↵ | Peter S. Mazinger | |
was indeed a badly chosen name | |||
2005-12-15 | silly bug | Eric Andersen | |
2005-12-13 | Convert all users of earlier hiddens | Peter S. Mazinger | |
2005-12-13 | Convert internal users of chmod/*stat*, minimize change for __strsep | Peter S. Mazinger | |
2005-12-10 | fix signed warning | Mike Frysinger | |
2005-12-10 | Switch fread/fwrite/fclose/pipe/sigsetmask users | Peter S. Mazinger | |
2005-12-09 | Implement hidden listen, use the hidden listen/accept | Peter S. Mazinger | |
2005-12-09 | Implement hidden poll, switch user to hidden *printf/*scanf/poll | Peter S. Mazinger | |
2005-12-09 | internal sigpause, do we really default to BSD signals? | Peter S. Mazinger | |