summaryrefslogtreecommitdiffstats
path: root/libc/inet/rpc
Commit message (Collapse)AuthorAgeFilesLines
...
* Switch fread/fwrite/fclose/pipe/sigsetmask usersPeter S. Mazinger2005-12-102-0/+4
|
* Implement hidden listen, use the hidden listen/acceptPeter S. Mazinger2005-12-094-0/+8
|
* Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger2005-12-0913-23/+34
|
* internal sigpause, do we really default to BSD signals?Peter S. Mazinger2005-12-091-0/+1
|
* mmap/mremap/socket/rewind gonePeter S. Mazinger2005-12-0813-13/+29
|
* Again rpc ;-( , all *inet*, *addr*Peter S. Mazinger2005-12-0819-24/+67
|
* Missed alias to xdr_string, thanks sjhillPeter S. Mazinger2005-12-081-0/+1
|
* Hide morePeter S. Mazinger2005-12-0715-3/+25
|
* No more *xdr* jump relocationsPeter S. Mazinger2005-12-0722-170/+231
|
* Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ...Peter S. Mazinger2005-12-0724-286/+317
|
* Make use internal str*casecmp/wcscollPeter S. Mazinger2005-12-061-10/+3
|
* macro out the thread funcs in libc if threading is disabledMike Frysinger2005-12-062-11/+5
|
* a small TODOMike Frysinger2005-12-061-0/+1
|
* More hiding, 300 leftPeter S. Mazinger2005-12-0414-33/+46
|
* Rename newly created __libc_x (reserved for libpthread overwrites) w/ ↵Peter S. Mazinger2005-12-037-25/+25
| | | | x_internal, do not use cascading aliases
* More hiding, including __mempcpyPeter S. Mazinger2005-12-0319-9/+32
|
* Hide mostly used functionsPeter S. Mazinger2005-12-0130-173/+174
|
* Hiding againPeter S. Mazinger2005-11-2910-4/+24
|
* 100 JUMP relocs less (remaining 431) by hiding internally used onesPeter S. Mazinger2005-11-2617-36/+75
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Hide __libc_sa_lenPeter S. Mazinger2005-11-152-2/+2
|
* Another s/index/strchr/Peter S. Mazinger2005-11-101-10/+10
|
* Correct IMAPeter S. Mazinger2005-11-031-1/+4
|
* Remove last unused references to libc-a-pic-, we use only the lists in ↵Peter S. Mazinger2005-11-011-1/+0
| | | | libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-61/+8
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-0/+50
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* only include libc-tsd.h if we have threads supportMike Frysinger2005-10-201-1/+2
|
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-16/+14
| | | | 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.
* One more addition."Steven J. Hill"2005-10-041-0/+6
|
* Clean up pthread include mess. Some of these will be needed to support NPTL, ↵"Steven J. Hill"2005-10-041-2/+1
| | | | but they do no harm for the linuxthreads case. Yes, I tested this.
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-181-0/+98
| | | | option to enable REENTRANT RPC
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-181-15/+10
| | | | option to enable REENTRANT RPC
* rework some of the code to shrink sizeMike Frysinger2005-08-181-16/+19
|
* style tweaksMike Frysinger2005-08-181-39/+25
|
* we have getprotobyname_r() now so use itMike Frysinger2005-08-181-9/+20
|
* merge parallel build supportMike Frysinger2005-01-251-5/+4
|
* Revert Peter's __lib_gettimeofday patch. There's the minor issue ofManuel Novoa III2004-10-312-3/+3
| | | | | | adding cruft to include/sys/time.h. But also, there's no sense in making changes like this until we decide how we're going to approach the hidden symbol transition.
* Peter S. Mazinger writes:Eric Andersen2004-10-192-3/+3
| | | | | | | | | | | Hello! Would the attached patch be acceptable (maybe instead of __libc_gettimeofday using __gettimeofday) We have some issues, see http://bugs.gentoo.org/show_bug.cgi?id=65892
* Joakim Tjernlund writes:Eric Andersen2004-05-141-1/+1
| | | | | | | | | | | Hi Erik It seems to me that __pthread_once and __pthread_initialize_minimal could be made WEAKs with no stub. The code in rpc_thread.c and __uClibc_main.c appears to expect this. Also, __pthread_return_0 __pthread_return_1 and __pthread_return_void can be static, not to pollute the name space. Jocke
* Cope with gcc 3.4's more aggressive persuit of attribute unusedEric Andersen2004-04-201-1/+1
|
* Based on a patch from Alexandre Oliva, remove all reference to 'bzero' (whichEric Andersen2004-03-188-10/+10
| | | | | is not a SuSv3 symbol). Rather than using __bzero internally per Alexandre's original patch, use memset instead.
* Alexandre Oliva writes:Eric Andersen2004-02-187-10/+10
| | | | | | | | | | While testing the FR-V code with GCC mainline, I ran into some problems in the RPC code. It relies on a GCC extension that is no longer available, namely, the result of a cast is no longer considered an lvalue. This patch enables the code to compile. I haven't been able to test RPC though, especially in a multi-threaded environment.
* s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/gEric Andersen2004-01-161-11/+11
|
* Fix a long-standing bug with pthreads. A couple of linuxthreads filesManuel Novoa III2003-12-271-2/+2
| | | | | | | | | | | | | | | | were including libc-lock.h which had a bunch of weak pragmas. Also, uClibc supplied a number of no-op weak thread functions even though many weren't needed. This combined result was that sometimes the functional versions of thread functions in pthread would not override the weaks in libc. While fixing this, I also prepended double-underscore to all necessary weak thread funcs in uClibc, and removed all unused weaks. I did a test build, but haven't tested this since these changes are a backport from my working tree. I did test the changes there and no longer need to explicitly add -lpthread in the perl build for perl to pass its thread self tests.
* Avoid a potentially undefined operation with a veriable++ in a macroEric Andersen2003-12-021-2/+2
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Atsushi Nemoto writes:Eric Andersen2003-10-082-3/+3
| | | | | | | | | | | | | 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.
* Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III2003-08-011-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should be standards compliant and with several optional features, including support for hexadecimal float notation, locale awareness, glibc-like locale-specific digit grouping with the `'' flag, and positional arg support. I tested it pretty well (finding several bugs in glibc's scanf in the process), but it is brand new so be aware. The *wprintf functions now support floating point output. Also, a couple of bugs were squashed. Finally, %a/%A conversions are now implemented. Implement the glibc xlocale interface for thread-specific locale support. Also add the various *_l(args, locale_t loc_arg) funcs. NOTE!!! setlocale() is NOT threadsafe! NOTE!!! The strto{floating point} conversion functions are now locale aware. The also now support hexadecimal floating point notation. Add the wcsto{floating point} conversion functions. Fix a bug in mktime() related to dst. Note that unlike glibc's mktime, uClibc's version always normalizes the struct tm before attempting to determine the correct dst setting if tm_isdst == -1 on entry. Add a stub version of the libintl functions. (untested) Fixed a known memory leak in setlocale() related to the collation data. Add lots of new config options (which Erik agreed to sort out :-), including finally exposing some of the stripped down stdio configs. Be careful with those though, as they haven't been tested in a long time. (temporary) GOTCHAs... The ctype functions are currently incorrect for 8-bit locales. They will be fixed shortly. The ctype functions are now table-based, resulting in larger staticly linked binaries. I'll be adding an option to use the old approach in the stub locale configuration.
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-14/+1
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Make INCLUDE_FULL_RPC default to !HAVE_SHARED.Miles Bader2002-08-161-1/+14
|