Files
rtems/testsuites/libtests/dl09/dl-o1.h
Chris Johns d8c70ba65b libdl: Add support for trampolines
- Trampolines or fixups for veneers provide long jump support
  for instruciton sets that implement short relative address
  branches. The linker provides trampolines when creating a
  static image. This patch adds trampoline support to libdl
  and the ARM architecture.

- The dl09 test requires enough memory so modules are outside
  the relative branch instruction ranges for the architecture.

Updates #3685
2019-02-09 10:06:34 +11:00

24 lines
537 B
C

/*
* Copyright (c) 2018 Chris Johns <chrisj@rtems.org>.
* All rights reserved.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#if !defined(DL01_H)
#define DL01_H
extern int dl01_bss1;
extern float dl01_bss2[30];
extern char dl01_bss3[10];
extern int dl01_data1;
extern float dl01_data2;
extern const int dl01_const1;
extern const float dl01_const2;
int dl01_func1(void);
#endif