Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2005-12-08 | mmap/mremap/socket/rewind gone | Peter S. Mazinger | |
2005-12-08 | Use __sendto in __libc_send, small correction | Peter S. Mazinger | |
2005-12-08 | Convert the rest of users to hidden | Peter S. Mazinger | |
2005-12-08 | Similar impl. of __libc_x using hidden_weak_alias, hope threads work w/ it | Peter S. Mazinger | |
2005-12-08 | Again rpc ;-( , all *inet*, *addr* | Peter S. Mazinger | |
2005-12-08 | Missed alias to xdr_string, thanks sjhill | Peter S. Mazinger | |
2005-12-07 | Hide more | Peter S. Mazinger | |
2005-12-07 | No more *xdr* jump relocations | Peter S. Mazinger | |
2005-12-07 | Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ... | Peter S. Mazinger | |
2005-12-06 | Make use internal str*casecmp/wcscoll | Peter S. Mazinger | |
2005-12-06 | macro out the thread funcs in libc if threading is disabled | Mike Frysinger | |
2005-12-06 | a small TODO | Mike Frysinger | |
2005-12-04 | More hiding, 300 left | Peter S. Mazinger | |
2005-12-03 | Rename newly created __libc_x (reserved for libpthread overwrites) w/ ↵ | Peter S. Mazinger | |
x_internal, do not use cascading aliases |