Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2005-12-03 | _uintmaxtostr is only internally used, we do not need a rename, ↵ | Peter S. Mazinger | |
uClibc_uintmaxtostr.h is only internal header, remove from target | |||
2005-12-03 | More hiding, including __mempcpy | Peter S. Mazinger | |
2005-12-01 | Hide mostly used functions | Peter S. Mazinger | |
2005-11-29 | Hiding again | Peter S. Mazinger | |
2005-11-27 | Hide some of mem* and str* | Peter S. Mazinger | |
2005-11-26 | 100 JUMP relocs less (remaining 431) by hiding internally used ones | Peter S. Mazinger | |
2005-11-26 | Some more hidden internals | Peter S. Mazinger | |
2005-11-21 | Remove TOPDIR | Peter S. Mazinger | |
2005-11-15 | Hide __libc_sa_len | Peter S. Mazinger | |
2005-11-10 | Another s/index/strchr/ | Peter S. Mazinger | |
2005-11-03 | Correct IMA | Peter S. Mazinger | |
2005-11-01 | Only because of multi sources I had to touch up these and add code duplication | Peter S. Mazinger | |
2005-11-01 | Remove last unused references to libc-a-pic-, we use only the lists in ↵ | Peter S. Mazinger | |
libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC | |||
2005-10-29 | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | |
2005-10-25 | All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵ | Peter S. Mazinger | |
archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally. | |||
2005-10-20 | Better solution to duplicate locking defines | Peter S. Mazinger | |
2005-10-20 | Change in_addr_t inet_aton to int, glibc has it as int and uClibc uses it in ↵ | Peter S. Mazinger | |
addr.c also as int. Rename mylock/LOCK/UNLOCK in resolv.c to allow IMA compiling | |||
2005-10-20 | only include libc-tsd.h if we have threads support | Mike Frysinger | |
2005-10-12 | Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵ | Peter S. Mazinger | |
objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much. | |||
2005-10-04 | One more addition. | "Steven J. Hill" | |
2005-10-04 | Clean up pthread include mess. Some of these will be needed to support NPTL, ↵ | "Steven J. Hill" | |
but they do no harm for the linuxthreads case. Yes, I tested this. | |||
2005-08-18 | add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵ | Mike Frysinger | |
option to enable REENTRANT RPC | |||
2005-08-18 | add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵ | Mike Frysinger | |
option to enable REENTRANT RPC | |||
2005-08-18 | rework some of the code to shrink size | Mike Frysinger | |
2005-08-18 | style tweaks | Mike Frysinger | |
2005-08-18 | we have getprotobyname_r() now so use it | Mike Frysinger | |
2005-06-29 | if both __NR_send and __NR_socketcall do not exist, fall back to __NR_sendto ↵ | Mike Frysinger | |
(same goes for recv/recvfrom) | |||
2005-06-29 | ifdef out check which always fails | Mike Frysinger | |
2005-05-10 | The default static buffer sizes are too small to handle the 8 entries returned | Eric Andersen | |
by 'nslookup www.yahoo.com' and 'nslookup mail.hotmail.com', and thus we currently return ERANGE when trying to lookup some of the most popular hosts on the planet. Whether these sites deserve to be popular is a question I'll leave for someone else to worry about. This change makes certain we have enough static buffer space to handle about 21 IPv4 IP address replies per DNS query. Far more than enough to handle common cases such as www.yahoo.com and mail.hotmail.com. |