summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl07/dl07-o4.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-26tests: Add header for RTEMS test printerSebastian Huber1-1/+1
The <rtems/test-info.h> header file is required for every RTEMS test program. Move the RTEMS test printer support to a dedicated header file <rtems/test-printer.h>. This removes an unnecessary dependency to the RTEMS printer support in <rtems/test-info.h>. Tests using the RTEMS Testing Framework no longer depend on the <rtems/printer.h>.
2022-04-07testsuites/libtests/dl*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2020-07-23libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber1-1/+1
Rename this header file to later move <t.h> to <rtems/test.h>. The main feature provided by <rtems/test-info.h> is the output of standard test information which is consumed by the RTEMS Tester. Update #3199.
2019-11-26libtests/dl*: Rename source filesSebastian Huber1-0/+0
Rename source files to use a %.c -> %.o and %.cc -> %.o pattern. Use *.cc for C++ source files instead of *.cpp to be in line with other C++ source files. Update #3818.
2019-02-09libdl: Add powerpc large memory and small data support.Chris Johns1-14/+14
- Add support for architecure sections that can be handled by the architecture back end. - Add trampoline/fixup support for PowerPC. This means the PowerPC now supports large memory loading of applications. - Add a bit allocator to manage small block based regions of memory. - Add small data (sdata/sbss) support for the PowerPC. The support makes the linker allocated small data region of memory a global resource available to libdl loaded object files. Updates #3687 Updates #3685
2018-11-22libdl: Add object file dependencies to track referencesChris Johns1-0/+53
Tracking references lets us manage when an object file can be unloaded. If an object file has references to it, it cannot be unloaded. Modules that depend on each other cannot be unloaded. Updates #3605