source: rtems/testsuites/libtests/dl07/dl-o2.h @ 95c1921

5
Last change on this file since 95c1921 was 03139d5b, checked in by Chris Johns <chrisj@…>, on 11/20/18 at 03:56:11

libdl: Add object file dependencies to track references

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

  • Property mode set to 100644
File size: 478 bytes
Line 
1/*
2 * Copyright (c) 2018 Chris Johns <chrisj@rtems.org>.
3 * All rights reserved.
4 *
5 * The license and distribution terms for this file may be
6 * found in the file LICENSE in this distribution or at
7 * http://www.rtems.org/license/LICENSE.
8 */
9
10#if !defined(DL02_H)
11#define DL02_H
12
13/*
14 * A set of variables in dl-o2 reference by dl-03.
15 */
16
17extern int   dl02_bss1;
18extern float dl02_bss2[7];
19extern char  dl02_bss3[21];
20extern int   dl02_data1;
21extern float dl02_data2;
22
23#endif
Note: See TracBrowser for help on using the repository browser.