summaryrefslogtreecommitdiff
path: root/cpukit/libdl/rtl-rap.c (follow)
AgeCommit message (Collapse)Author
2020-05-05libdl/rap: Correctly check the return enum from rela callsChris Johns
- 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
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-06-12libdl/rap: fix RAP file load error.zhengxiaojun
2019-02-15libdl/rap: Add the section alloc call after section load was splitChris Johns
Updates #3687
2018-04-12libdl: Remove _t from all structures as this is reserved for the standardsChris Johns
2018-04-12libdl: RAP format fixes.Chris Johns
- 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
2017-12-13libdl: Include <rtems/rtl/rtl-*.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-10-06libdl: Fix warningsSebastian Huber
Update #3155.
2016-12-14libdl: Add C++ exception support to loaded modules.Chris Johns
This has been tested on SPARC, i386, PowerPC and ARM. Closes #2767.
2016-07-21libdl/rtl-obj.c: synchronize cache after code relocation.Pavel Pisa
Memory content changes caused by relocation has to be propagated to memory/cache level which is used/snooped during instruction cache fill. Closes #2438
2015-03-20Replace www.rtems.com with www.rtems.orgSebastian Huber
2014-10-31cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns
This is a merge of the RTL project.