Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | libc: Remove compiler warning due to old-style function definition | Carmelo Amoroso | 2010-04-25 | 1 | -5/+2 |
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | ||||
* | rexec.c: style fixes, no code chages (verified with objdump) | Denys Vlasenko | 2009-09-06 | 1 | -44/+23 |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | rexec.c: small code shrink | Denys Vlasenko | 2009-09-06 | 1 | -2/+6 |
| | | | | | | | | text data bss dec hex filename - 1223 0 0 1223 4c7 libc/inet/rpc/rexec.o + 1214 0 0 2239 8bf libc/inet/rpc/rexec.o Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | comment out "int rexecoptions"; make "char ahostbuf[]" static (was hidden) | Denys Vlasenko | 2009-09-06 | 1 | -2/+2 |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | Last portion of libc_hidden_proto removal. | Denis Vlasenko | 2008-11-20 | 1 | -12/+12 |
| | | | | | Appears to build fine (several .configs tried) | ||||
* | next portion of libc_hidden_proto removal | Denis Vlasenko | 2008-11-20 | 1 | -5/+5 |
| | |||||
* | libc_hidden_proto removal, just a few functions | Denis Vlasenko | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | 2008-05-19 | 1 | -3/+3 |
| | | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | ||||
* | Functions should be either exported in public .h files | Denis Vlasenko | 2008-04-12 | 1 | -2/+1 |
| | | | | | | | | | | | | | and marked with libc_hidden_proto/def(), or not be exported in .h files and be hidden (or even static if possible). We have five functions which violate this. Fixing: netdb.h: export ruserpass() rpc/rpc.h: export xdr_accepted_reply() and xdr_rejected_reply() make inet_ntoa_r static function (it is not exported in any .h file) make _time_tzset hidden function (it is not exported in any .h file) | ||||
* | sync some fixes from glibc | Mike Frysinger | 2007-01-29 | 1 | -3/+7 |
| | |||||
* | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | 2006-01-14 | 1 | -1/+1 |
| | |||||
* | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | 2006-01-14 | 1 | -42/+53 |
| | | | | missing headers, other jump relocs removed | ||||
* | hide internal ahostbuf symbol | Mike Frysinger | 2006-01-08 | 1 | -1/+1 |
| | |||||
* | Implement hidden listen, use the hidden listen/accept | Peter S. Mazinger | 2005-12-09 | 1 | -0/+2 |
| | |||||
* | Implement hidden poll, switch user to hidden *printf/*scanf/poll | Peter S. Mazinger | 2005-12-09 | 1 | -1/+2 |
| | |||||
* | mmap/mremap/socket/rewind gone | Peter S. Mazinger | 2005-12-08 | 1 | -2/+2 |
| | |||||
* | Again rpc ;-( , all *inet*, *addr* | Peter S. Mazinger | 2005-12-08 | 1 | -1/+5 |
| | |||||
* | Hide more | Peter S. Mazinger | 2005-12-07 | 1 | -0/+4 |
| | |||||
* | Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ... | Peter S. Mazinger | 2005-12-07 | 1 | -5/+5 |
| | |||||
* | More hiding, 300 left | Peter S. Mazinger | 2005-12-04 | 1 | -10/+6 |
| | |||||
* | Hide mostly used functions | Peter S. Mazinger | 2005-12-01 | 1 | -17/+17 |
| | |||||
* | Hide __libc_sa_len | Peter S. Mazinger | 2005-11-15 | 1 | -1/+1 |
| | |||||
* | Atsushi Nemoto writes: | Eric Andersen | 2003-10-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | I found inappropriate data types are used in some places in networking codes. * tcp_seq is 32bit (u_long -> u_int32_t) * in_addt_t should be used for internet address (unsigned long -> in_addr_t) * socklen_t should be used for accept() This is a patch against uclibc-0.9.21 (can be applied for current CVS). 64bit platforms (sizeof(int)!=sizeof(long)) will need this. I believe this patch does not harm any 32bit platforms. | ||||
* | Rework RPC code once again. By default, only enable the | Eric Andersen | 2002-08-06 | 1 | -0/+191 |
stuff needed for NFS mounts, rsh, and similar. -Erik |