summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/rtl-rap.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libdl/rap: Correctly check the return enum from rela callsChris Johns2020-05-051-4/+13
| | | | | | | | - The change from bool to an enum did not trip a compiler warning and only the rel path was changed. The rela path was missed so archs like SPARC failed. Updates #3969
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* libdl/rap: fix RAP file load error.zhengxiaojun2019-06-121-2/+2
|
* libdl/rap: Add the section alloc call after section load was splitChris Johns2019-02-151-0/+6
| | | | Updates #3687
* libdl: Remove _t from all structures as this is reserved for the standardsChris Johns2018-04-121-70/+70
|
* libdl: RAP format fixes.Chris Johns2018-04-121-8/+10
| | | | | | | | | | - Do not error if a RAP section is not found. - Free a symbol table via the RTL allocator interface. - Add the symbols to the global symbol table. Update #2769
* libdl: Include <rtems/rtl/rtl-*.h>Sebastian Huber2017-12-131-3/+3
| | | | | | Prepare for header file move to common include directory. Update #3254.
* libdl: Fix warningsSebastian Huber2017-10-061-23/+27
| | | | Update #3155.
* libdl: Add C++ exception support to loaded modules.Chris Johns2016-12-141-20/+35
| | | | | | This has been tested on SPARC, i386, PowerPC and ARM. Closes #2767.
* libdl/rtl-obj.c: synchronize cache after code relocation.Pavel Pisa2016-07-211-0/+2
| | | | | | | | Memory content changes caused by relocation has to be propagated to memory/cache level which is used/snooped during instruction cache fill. Closes #2438
* Replace www.rtems.com with www.rtems.orgSebastian Huber2015-03-201-1/+1
|
* cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns2014-10-311-0/+980
This is a merge of the RTL project.