summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-07cpukit: Remove libnetworkingVijay Kumar Banerjee61-14971/+0
Update #3850
2018-10-04rpc: Use configuration header fileSebastian Huber38-0/+114
Update #3375.
2018-10-02Use rtems_task_exit()Sebastian Huber1-7/+7
Update #3530. Update #3533.
2018-07-11bsp/x86_64: Minimal bootable BSPAmaan Cheval1-1/+2
Current state: - Basic context initialization and switching code. - Stubbed console (empty functions). - Mostly functional linker script (may need tweaks if we ever want to move away from the large code model (see: CPU_CFLAGS). - Fully functional boot, by using FreeBSD's bootloader to load RTEMS's ELF for UEFI-awareness. In short, the current state with this commit lets us boot, go through the system initialization functions, and then call user application's Init task too. Updates #2898.
2017-10-28cpukit: librpc - add riscv* to xdr_float.c v3Hesham Almatary1-0/+1
2017-08-25Include missing <string.h>Sebastian Huber1-0/+1
Update #2133.
2017-06-07rpc: Remove superfluous includesSebastian Huber2-2/+0
Update #2833.
2016-01-19Remove AVR portJoel Sherrill1-1/+0
closes #2443.
2016-01-18Chase Newlib sys/types.h / sys/select.h changesNick Withers5-1/+5
2016-01-04Remove H8300 portJoel Sherrill1-1/+0
updates #2452.
2016-01-04Remove M32R architectureJoel Sherrill1-1/+0
updates #2446.
2015-05-21cpukit: Add Epiphany architecture port v4Hesham ALMatary1-0/+1
2015-03-03xdr_float.c: Fix typoJoel Sherrill1-1/+1
2015-03-03librpc: Include or1knd part of the recongnized CPUs at xdr_float.cHesham ALMatary1-1/+1
Close #2256
2015-02-23rpc: misaligned pointer dereference in clnt_udp.c line 363Jeffrey Hill1-3/+3
closes #2248
2015-02-23rpc: misaligned address exception in get_myaddress.cJeffrey Hill1-15/+38
closes #2249 see #1401
2014-11-21Delete or rename MIN/MAX macros and definesSebastian Huber1-1/+1
Include <sys/param.h> if necessary to get the MIN()/MAX() macros.
2014-08-25Add or1k to the list of targets that use IEEE 754 in xdr_float.cHesham ALMatary1-0/+1
2014-03-24librpc: Use POSIX key instead of task variablesChristian Mauderer1-15/+45
2013-02-28Common file changes in support of Moxie portAnthony Green1-1/+1
Signed-off-by: Anthony Green <green@moxielogic.com>
2012-06-11v850 port: Initial addition with BSP for simulator in GDBJoel Sherrill1-1/+2
Port + v850 does not have appear to have any optimized bit scan instructions + v850 does have single instructions for wap u16 and u32 + Code path optimization preferences set + Add BSP variants for each GCC CPU model flag and a README - v850e1 variant does not work (fails during BSP initialization) BSP for GDB v850 Simulator + linkcmds matches defaults in GDB simulator with RTEMS mods + crt1.c added from v850 newlib port for __main() + BSP exits cleanly + printk and console I/O work + uses clock tick from IDLE task + Tests not requiring real clock ISR work Documentation + CPU Supplment chapter for v850 added
2012-06-06librpc: PR2066: Fix for short enumsSebastian Huber1-5/+3
The XDR library has a problem on architectures with short enums like the default ARM EABI. Short enums means that the size of the enum type is variable and the smallest integer type to hold all enum values will be selected. For many enums this is char. The XDR library uses int32_t for enum_t. There are several evil casts from an enum type to enum_t which leads to invalid memory accesses on short enum architectures. A workaround is to add appropriate dummy enum values.
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-2/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2011-11-302011-11-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-3/+11
* librpc/src/rpc/clnt_udp.c (struct cu_data): Introduce unions _cu_inbuf, _cu_outbuf to avoid aliasing.
2010-05-292010-05-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-2/+2
* librpc/src/xdr/xdr_mem.c (xdr_memcreate): Cast addr to uintptr_t instead of size_t.
2010-05-272010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-6/+6
* librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/clnt_udp.c: Revert to using u_long instead of rpcprog_t, rpcvers_t to stay bug-ward compatible to freebsd.
2010-05-272010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-4/+4
* librpc/src/xdr/xdr_mem.c: Cosmetics from freebsd.
2010-05-272010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-3/+7
* librpc/src/rpc/rtems_portmapper.c: Reflect changes to librpc.
2010-05-272010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius7-43/+47
* librpc/include/rpc/clnt.h, librpc/include/rpc/rpc_msg.h, librpc/src/rpc/clnt_generic.c, librpc/src/rpc/clnt_raw.c, librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/clnt_udp.c, librpc/src/rpc/pmap_clnt.c, librpc/src/rpc/pmap_getmaps.c librpc/src/rpc/pmap_getport.c: Partial merger from freebsd (portability fixes).
2010-05-262010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-22/+22
* librpc/src/rpc/clnt_udp.c: Cosmetics from freebsd.
2010-05-262010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-36/+54
* librpc/src/rpc/clnt_tcp.c: Partial merger from freebsd (Fix strict-aliasing).
2010-05-262010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-10/+13
* librpc/src/rpc/clnt_raw.c: Partial merger from freebsd (Improved 16 bit compatibility; Fix strict-aliasing).
2010-05-252010-05-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-10/+21
* librpc/src/rpc/rpc_prot.c: Partial merger from freebsd (Improved 64 bit compatibility; bug fix).
2010-04-292010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-5/+5
* librpc/src/rpc/clnt_udp.c, librpc/src/xdr/xdr_mem.c: Use [u]intptr_t instead of [u_]long for better 16bit compliance.
2010-04-292010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-2/+2
* librpc/src/rpc/pmap_rmt.c: Use uintptr_t for better 16bit compliance.
2010-03-28Add HAVE_STRINGS_H for better POSIX compliance.Ralf Corsepius1-0/+3
2010-03-28Add HAVE_CONFIG_H support to let files receive configure defines.Ralf Corsepius45-0/+183
2009-05-202009-05-20 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* librpc/src/xdr/xdr_float.c: Change detection logic for h8300.
2009-01-082009-01-08 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-3/+1
* librpc/src/xdr/xdr_float.c: M32C has no native float but GCC soft float should be IEEE format.
2008-12-23Add missing initializers.Ralf Corsepius1-0/+34
2008-12-042008-12-04 Jukka Pietarinen <jukka.pietarinen@mrf.fi>Joel Sherrill1-0/+1
* configure.ac, librpc/src/xdr/xdr_float.c, score/cpu/Makefile.am: Add Lattice Mico32 support.
2008-11-052008-11-05 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+5
* librpc/src/xdr/xdr_float.c: Add M32C, M32R, and Blackfin.
2008-09-01Stop using old-style function definitions.Ralf Corsepius19-195/+189
2008-08-18Add missing prototypes.Ralf Corsepius2-12/+16
2008-08-01Misc. ansifications. Add prototypes.Ralf Corsepius1-36/+36
2008-08-01Misc. ansifications. Add prototypes.Ralf Corsepius3-58/+59
2008-08-01Misc. ansifications.Ralf Corsepius1-3/+5
2008-08-01Remove stray local decls. Misc. ansifications.Ralf Corsepius1-7/+5
2008-08-01Misc. ansifications.Ralf Corsepius3-26/+26
2008-08-01Remove stray clnt_perror().Ralf Corsepius1-2/+0