summaryrefslogtreecommitdiffstats
path: root/libc/inet/rpc/rexec.c
Commit message (Collapse)AuthorAgeFilesLines
* rexec.c: style fixes, no code chages (verified with objdump)Denys Vlasenko2009-09-181-44/+23
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* rexec.c: small code shrinkDenys Vlasenko2009-09-181-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> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* comment out "int rexecoptions"; make "char ahostbuf[]" static (was hidden)Denys Vlasenko2009-09-181-2/+2
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Synch with trunk @ 24165Carmelo Amoroso2008-11-271-17/+17
| | | | | Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character)
* Synch with trunk @ 24087Carmelo Amoroso2008-11-181-1/+1
| | | | Step 10: libc_hidden_removal
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-8/+11
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Merge from trunk. Going pretty good so far. Kind of. Okay, not really."Steven J. Hill"2006-02-251-43/+54
|
* Merge from trunk."Steven J. Hill"2005-12-101-4/+11
|
* Merge from trunk."Steven J. Hill"2005-12-081-5/+9
|
* Big merge from trunk. Stop the madness!"Steven J. Hill"2005-12-061-10/+6
|
* Merge from trunk. More to come you betcha'."Steven J. Hill"2005-12-021-17/+17
|
* Massive merge from trunk."Steven J. Hill"2005-11-181-1/+1
|
* Atsushi Nemoto writes:Eric Andersen2003-10-081-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 theEric Andersen2002-08-061-0/+191
stuff needed for NFS mounts, rsh, and similar. -Erik