summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/include/rpc/clnt.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use void* instead of caddr_t. Cosmetics from FreeBSD.Ralf Corsepius2005-05-251-2/+2
|
* More updates from FreeBSD.Ralf Corsepius2005-05-251-51/+10
|
* More updates from FreeBSD.Ralf Corsepius2005-05-251-105/+41
|
* 2005-05-25 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-251-14/+17
| | | | * librpc/include/rpc/clnt.h: Partial update from FreeBSD.
* 2005-01-09 Joel Sherrill <joel@oarcorp.com>Joel Sherrill2005-01-091-6/+6
| | | | | | | * librpc/include/rpc/clnt.h, librpc/src/rpc/authunix_prot.c, librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/pmap_prot2.c, librpc/src/rpc/pmap_rmt.c, librpc/src/rpc/rtems_portmapper.c, librpc/src/rpc/svc_simple.c: Fix warnings.
* Merged from 4.5.0-beta3aJoel Sherrill2000-06-121-61/+144
|
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> to add remote debug serverJoel Sherrill1998-12-031-0/+336
and RPC support to RTEMS. Thanks. :) Email follows: Hello, For Xmas, here is the Remote Debugger on RTEMS ! Here are 2 patches for the Remote Debugger on RTEMS for pc386 from Linux host : - one for RTEMS it self, - one for GDB-4.17. 1/ RTEMS patch -------------- This patch adds 2 libraries : - a simplified SUN RPC library - the Remote Debugger library The configuration command is the following : ../rtems4/configure --target=i386-rtemself --enable-rtemsbsp=pc386 --enable-rdbg The SUN RPC library is built only if networking is set. The RDBG library is built if networking and enable-rdbg are set. The function used to initialize the debugger is : rtems_rdbg_initialize (); A special function has been created to force a task to be in a "debug" state : enterRdbg(). The use of this function is not mandatory. 2/ GDB-4.17 patch ----------------- This patch create a new RTEMS target for GDB-4.17. The configuration command is the following : ./configure --enable-shared --target=i386RTEMS To connect to a target, use : target rtems [your_site_address] Then, attach the target using : attach 1 And... Debug ;) You can obtain the original GDB-4.17 on ftp://ftp.debian.org/debian/dists/stable/main/source/devel/gdb_4.17.orig.tar.gz This has been tested from a Debian 2.0.1 linux host.