summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cpukit: Remove libnetworkingVijay Kumar Banerjee2021-04-0790-21185/+0
| | | | Update #3850
* build: Merge librpc/Makefile.amSebastian Huber2018-10-101-50/+0
|
* build: Remove specialized CPPFLAGSSebastian Huber2018-10-091-2/+0
|
* rpc: Use configuration header fileSebastian Huber2018-10-0439-4/+115
| | | | Update #3375.
* Use rtems_task_exit()Sebastian Huber2018-10-021-7/+7
| | | | | Update #3530. Update #3533.
* bsp/x86_64: Minimal bootable BSPAmaan Cheval2018-07-111-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.
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-18/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* network: Optionally install network headersSebastian Huber2018-03-091-3/+3
| | | | | | Install the network headers only if --enable-networking is specified. Update #3254.
* Remove make preinstallChris Johns2018-01-2519-2537/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
* cpukit: librpc - add riscv* to xdr_float.c v3Hesham Almatary2017-10-281-0/+1
|
* Include missing <string.h>Sebastian Huber2017-08-251-0/+1
| | | | Update #2133.
* rpc: Remove superfluous includesSebastian Huber2017-06-072-2/+0
| | | | Update #2833.
* Remove AVR portJoel Sherrill2016-01-191-1/+0
| | | | closes #2443.
* Chase Newlib sys/types.h / sys/select.h changesNick Withers2016-01-186-1/+6
|
* Remove H8300 portJoel Sherrill2016-01-041-1/+0
| | | | updates #2452.
* Remove M32R architectureJoel Sherrill2016-01-041-1/+0
| | | | updates #2446.
* cpukit: Add Epiphany architecture port v4Hesham ALMatary2015-05-211-0/+1
|
* xdr_float.c: Fix typoJoel Sherrill2015-03-031-1/+1
|
* librpc: Include or1knd part of the recongnized CPUs at xdr_float.cHesham ALMatary2015-03-031-1/+1
| | | | Close #2256
* rpc: misaligned pointer dereference in clnt_udp.c line 363Jeffrey Hill2015-02-231-3/+3
| | | | closes #2248
* rpc: misaligned address exception in get_myaddress.cJeffrey Hill2015-02-231-15/+38
| | | | closes #2249 see #1401
* Delete or rename MIN/MAX macros and definesSebastian Huber2014-11-211-1/+1
| | | | Include <sys/param.h> if necessary to get the MIN()/MAX() macros.
* Add or1k to the list of targets that use IEEE 754 in xdr_float.cHesham ALMatary2014-08-251-0/+1
|
* librpc: Use POSIX key instead of task variablesChristian Mauderer2014-03-242-16/+48
|
* Common file changes in support of Moxie portAnthony Green2013-02-281-1/+1
| | | | Signed-off-by: Anthony Green <green@moxielogic.com>
* v850 port: Initial addition with BSP for simulator in GDBJoel Sherrill2012-06-111-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
* librpc: PR2066: Fix for short enumsSebastian Huber2012-06-067-15/+23
| | | | | | | | | | 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.
* Remove CVS Id Strings (manual edits after script)Joel Sherrill2012-05-112-2/+1
| | | | | | These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-115-15/+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.
* Revert: Remove CVS IdsJoel Sherrill2012-05-071-0/+4
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* Remove all .cvsignore files.Joel Sherrill2012-02-011-2/+0
|
* 2011-11-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-11-301-3/+11
| | | | | * librpc/src/rpc/clnt_udp.c (struct cu_data): Introduce unions _cu_inbuf, _cu_outbuf to avoid aliasing.
* 2011-05-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-05-171-10/+17
| | | | | * libnetworking/Makefile.am: Reformat. * librpc/Makefile.am: Reformat.
* Make self-contained.Ralf Corsepius2011-05-0511-0/+28
|
* Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).Ralf Corsepius2011-03-2413-13/+13
|
* 2010-05-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-291-2/+2
| | | | | * librpc/src/xdr/xdr_mem.c (xdr_memcreate): Cast addr to uintptr_t instead of size_t.
* 2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-272-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-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-271-4/+4
| | | | * librpc/src/xdr/xdr_mem.c: Cosmetics from freebsd.
* 2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-271-3/+7
| | | | * librpc/src/rpc/rtems_portmapper.c: Reflect changes to librpc.
* 2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-279-72/+70
| | | | | | | | | * 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-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-271-4/+4
| | | | * librpc/include/rpc/xdr.h: Cosmetics from freebsd.
* 2010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-261-22/+22
| | | | * librpc/src/rpc/clnt_udp.c: Cosmetics from freebsd.
* 2010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-261-36/+54
| | | | | * librpc/src/rpc/clnt_tcp.c: Partial merger from freebsd (Fix strict-aliasing).
* 2010-05-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-261-10/+13
| | | | | * librpc/src/rpc/clnt_raw.c: Partial merger from freebsd (Improved 16 bit compatibility; Fix strict-aliasing).
* 2010-05-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-251-10/+21
| | | | | * librpc/src/rpc/rpc_prot.c: Partial merger from freebsd (Improved 64 bit compatibility; bug fix).
* 2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-04-292-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-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-04-291-2/+2
| | | | | * librpc/src/rpc/pmap_rmt.c: Use uintptr_t for better 16bit compliance.
* Add HAVE_STRINGS_H for better POSIX compliance.Ralf Corsepius2010-03-281-0/+3
|
* Add HAVE_CONFIG_H support to let files receive configure defines.Ralf Corsepius2010-03-2845-0/+183
|