summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/rtl-sym.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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: Sort object file symbols and use a binary search to findChris Johns2019-05-221-8/+41
| | | | | | | - Replace the linear object file symbol search with a binary search. - Sort the object file symbols after loading. Closes #3748
* libdl: Remove _t from all structures as this is reserved for the standardsChris Johns2018-04-121-29/+29
|
* libdl: Include <rtems/rtl/rtl-*.h>Sebastian Huber2017-12-131-2/+2
| | | | | | Prepare for header file move to common include directory. Update #3254.
* Include missing <string.h>Sebastian Huber2017-08-251-0/+1
| | | | Update #2133.
* Replace www.rtems.com with www.rtems.orgSebastian Huber2015-03-201-1/+1
|
* libdl: Add a local symbol table to the object module.Chris Johns2014-11-041-4/+26
| | | | | | Adding a local symbol lets the relocator find local symbols referenced in relocation records. The local symbol table is erased once the object module has been loaded.
* cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns2014-10-311-0/+245
This is a merge of the RTL project.