summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-13 08:20:30 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-13 09:04:26 +0100
commit990adc543816dbba116a8ada21fa3401c655bf4b (patch)
tree8b343acda6c031b39ea8cb49685df753b63a3458
parentpipe: Include <rtems/pipe.h> (diff)
downloadrtems-990adc543816dbba116a8ada21fa3401c655bf4b.tar.bz2
libdl: Include <rtems/rtl/rtl-*.h>
Prepare for header file move to common include directory. Update #3254.
-rw-r--r--cpukit/libdl/rtl-allocator.c2
-rw-r--r--cpukit/libdl/rtl-debugger.c4
-rw-r--r--cpukit/libdl/rtl-elf.c4
-rw-r--r--cpukit/libdl/rtl-elf.h6
-rw-r--r--cpukit/libdl/rtl-find-file.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-arm.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-bfin.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-h8300.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-i386.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-lm32.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-m68k.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-mips.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-moxie.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-powerpc.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-sparc.c2
-rw-r--r--cpukit/libdl/rtl-mdreloc-v850.c2
-rw-r--r--cpukit/libdl/rtl-obj-cache.c4
-rw-r--r--cpukit/libdl/rtl-obj-comp.c2
-rw-r--r--cpukit/libdl/rtl-obj.c4
-rw-r--r--cpukit/libdl/rtl-rap.c6
-rw-r--r--cpukit/libdl/rtl-rap.h6
-rw-r--r--cpukit/libdl/rtl-shell.c2
-rw-r--r--cpukit/libdl/rtl-string.c2
-rw-r--r--cpukit/libdl/rtl-string.h2
-rw-r--r--cpukit/libdl/rtl-sym.c4
-rw-r--r--cpukit/libdl/rtl-trace.c2
-rw-r--r--cpukit/libdl/rtl-unresolved.c4
-rw-r--r--cpukit/libdl/rtl.c4
28 files changed, 41 insertions, 41 deletions
diff --git a/cpukit/libdl/rtl-allocator.c b/cpukit/libdl/rtl-allocator.c
index 9c5a20407b..575ce5356e 100644
--- a/cpukit/libdl/rtl-allocator.c
+++ b/cpukit/libdl/rtl-allocator.c
@@ -18,7 +18,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-alloc-heap.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
/**
* Tags as symbols for tracing.
diff --git a/cpukit/libdl/rtl-debugger.c b/cpukit/libdl/rtl-debugger.c
index afbea8ab44..1ba826f669 100644
--- a/cpukit/libdl/rtl-debugger.c
+++ b/cpukit/libdl/rtl-debugger.c
@@ -29,8 +29,8 @@
#include <stdio.h>
#include <link.h>
#include <rtems/rtl/rtl.h>
-#include "rtl-trace.h"
-#include "rtl-obj-fwd.h"
+#include <rtems/rtl/rtl-trace.h>
+#include <rtems/rtl/rtl-obj-fwd.h>
struct r_debug _rtld_debug;
diff --git a/cpukit/libdl/rtl-elf.c b/cpukit/libdl/rtl-elf.c
index c2bac9f69d..47c92d5f39 100644
--- a/cpukit/libdl/rtl-elf.c
+++ b/cpukit/libdl/rtl-elf.c
@@ -29,9 +29,9 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
-#include "rtl-unresolved.h"
+#include <rtems/rtl/rtl-unresolved.h>
/**
* The offsets in the unresolved array.
diff --git a/cpukit/libdl/rtl-elf.h b/cpukit/libdl/rtl-elf.h
index cee01804e0..abe0889fae 100644
--- a/cpukit/libdl/rtl-elf.h
+++ b/cpukit/libdl/rtl-elf.h
@@ -16,9 +16,9 @@
#if !defined (_RTEMS_RTL_ELF_H_)
#define _RTEMS_RTL_ELF_H_
-#include "rtl-fwd.h"
-#include "rtl-obj-fwd.h"
-#include "rtl-sym.h"
+#include <rtems/rtl/rtl-fwd.h>
+#include <rtems/rtl/rtl-obj-fwd.h>
+#include <rtems/rtl/rtl-sym.h>
#ifdef __cplusplus
extern "C" {
diff --git a/cpukit/libdl/rtl-find-file.c b/cpukit/libdl/rtl-find-file.c
index e4eefd6f6a..2bc89edbbd 100644
--- a/cpukit/libdl/rtl-find-file.c
+++ b/cpukit/libdl/rtl-find-file.c
@@ -31,7 +31,7 @@
#include "rtl-find-file.h"
#include "rtl-error.h"
#include "rtl-string.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#if WAF_BUILD
#define rtems_filesystem_is_delimiter rtems_filesystem_is_separator
diff --git a/cpukit/libdl/rtl-mdreloc-arm.c b/cpukit/libdl/rtl-mdreloc-arm.c
index d86cde1f9e..7b47345427 100644
--- a/cpukit/libdl/rtl-mdreloc-arm.c
+++ b/cpukit/libdl/rtl-mdreloc-arm.c
@@ -17,7 +17,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
/*
diff --git a/cpukit/libdl/rtl-mdreloc-bfin.c b/cpukit/libdl/rtl-mdreloc-bfin.c
index 5a1fd26e3c..b6542c38a6 100644
--- a/cpukit/libdl/rtl-mdreloc-bfin.c
+++ b/cpukit/libdl/rtl-mdreloc-bfin.c
@@ -5,7 +5,7 @@
#include <errno.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-h8300.c b/cpukit/libdl/rtl-mdreloc-h8300.c
index 0ef717bfb3..ddc0dc160f 100644
--- a/cpukit/libdl/rtl-mdreloc-h8300.c
+++ b/cpukit/libdl/rtl-mdreloc-h8300.c
@@ -8,7 +8,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-i386.c b/cpukit/libdl/rtl-mdreloc-i386.c
index c8f1e11c3e..c653274a90 100644
--- a/cpukit/libdl/rtl-mdreloc-i386.c
+++ b/cpukit/libdl/rtl-mdreloc-i386.c
@@ -14,7 +14,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-lm32.c b/cpukit/libdl/rtl-mdreloc-lm32.c
index e7e2a4c9c5..6175585ccd 100644
--- a/cpukit/libdl/rtl-mdreloc-lm32.c
+++ b/cpukit/libdl/rtl-mdreloc-lm32.c
@@ -8,7 +8,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-m68k.c b/cpukit/libdl/rtl-mdreloc-m68k.c
index 8a91ebcc44..5df739aa5b 100644
--- a/cpukit/libdl/rtl-mdreloc-m68k.c
+++ b/cpukit/libdl/rtl-mdreloc-m68k.c
@@ -14,7 +14,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-mips.c b/cpukit/libdl/rtl-mdreloc-mips.c
index 7ceac54765..360719e157 100644
--- a/cpukit/libdl/rtl-mdreloc-mips.c
+++ b/cpukit/libdl/rtl-mdreloc-mips.c
@@ -8,7 +8,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-moxie.c b/cpukit/libdl/rtl-mdreloc-moxie.c
index 27b0cf6824..dc41a30679 100644
--- a/cpukit/libdl/rtl-mdreloc-moxie.c
+++ b/cpukit/libdl/rtl-mdreloc-moxie.c
@@ -9,7 +9,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-powerpc.c b/cpukit/libdl/rtl-mdreloc-powerpc.c
index a3cb6b333a..06854a9028 100644
--- a/cpukit/libdl/rtl-mdreloc-powerpc.c
+++ b/cpukit/libdl/rtl-mdreloc-powerpc.c
@@ -15,7 +15,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-sparc.c b/cpukit/libdl/rtl-mdreloc-sparc.c
index 8d1239421d..e4143a91bd 100644
--- a/cpukit/libdl/rtl-mdreloc-sparc.c
+++ b/cpukit/libdl/rtl-mdreloc-sparc.c
@@ -40,7 +40,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-mdreloc-v850.c b/cpukit/libdl/rtl-mdreloc-v850.c
index 7f958a5fb8..f00c07febb 100644
--- a/cpukit/libdl/rtl-mdreloc-v850.c
+++ b/cpukit/libdl/rtl-mdreloc-v850.c
@@ -9,7 +9,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#include "rtl-unwind.h"
#include "rtl-unwind-dw2.h"
diff --git a/cpukit/libdl/rtl-obj-cache.c b/cpukit/libdl/rtl-obj-cache.c
index c120c8d887..00a2417f45 100644
--- a/cpukit/libdl/rtl-obj-cache.c
+++ b/cpukit/libdl/rtl-obj-cache.c
@@ -26,9 +26,9 @@
#include <rtems/inttypes.h>
#include <rtems/rtl/rtl-allocator.h>
-#include "rtl-obj-cache.h"
+#include <rtems/rtl/rtl-obj-cache.h>
#include "rtl-error.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
bool
rtems_rtl_obj_cache_open (rtems_rtl_obj_cache_t* cache, size_t size)
diff --git a/cpukit/libdl/rtl-obj-comp.c b/cpukit/libdl/rtl-obj-comp.c
index 70f14d3518..c49f614368 100644
--- a/cpukit/libdl/rtl-obj-comp.c
+++ b/cpukit/libdl/rtl-obj-comp.c
@@ -23,7 +23,7 @@
#include <unistd.h>
#include <rtems/rtl/rtl-allocator.h>
-#include "rtl-obj-comp.h"
+#include <rtems/rtl/rtl-obj-comp.h>
#include "rtl-error.h"
#include "fastlz.h"
diff --git a/cpukit/libdl/rtl-obj.c b/cpukit/libdl/rtl-obj.c
index 3a220092b3..dd9a1cdcdc 100644
--- a/cpukit/libdl/rtl-obj.c
+++ b/cpukit/libdl/rtl-obj.c
@@ -27,11 +27,11 @@
#include <rtems/rtl/rtl.h>
#include "rtl-chain-iterator.h"
-#include "rtl-obj.h"
+#include <rtems/rtl/rtl-obj.h>
#include "rtl-error.h"
#include "rtl-find-file.h"
#include "rtl-string.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#if RTEMS_RTL_RAP_LOADER
#include "rtl-rap.h"
diff --git a/cpukit/libdl/rtl-rap.c b/cpukit/libdl/rtl-rap.c
index a413e09619..2fe9c6b13f 100644
--- a/cpukit/libdl/rtl-rap.c
+++ b/cpukit/libdl/rtl-rap.c
@@ -30,10 +30,10 @@
#include <rtems/rtl/rtl.h>
#include "rtl-elf.h"
#include "rtl-error.h"
-#include "rtl-obj-comp.h"
+#include <rtems/rtl/rtl-obj-comp.h>
#include "rtl-rap.h"
-#include "rtl-trace.h"
-#include "rtl-unresolved.h"
+#include <rtems/rtl/rtl-trace.h>
+#include <rtems/rtl/rtl-unresolved.h>
/**
* The offsets in the unresolved array.
diff --git a/cpukit/libdl/rtl-rap.h b/cpukit/libdl/rtl-rap.h
index eca6e9ea4a..e96f342cea 100644
--- a/cpukit/libdl/rtl-rap.h
+++ b/cpukit/libdl/rtl-rap.h
@@ -16,9 +16,9 @@
#if !defined (_RTEMS_RTL_RAP_H_)
#define _RTEMS_RTL_RAP_H_
-#include "rtl-fwd.h"
-#include "rtl-obj-fwd.h"
-#include "rtl-sym.h"
+#include <rtems/rtl/rtl-fwd.h>
+#include <rtems/rtl/rtl-obj-fwd.h>
+#include <rtems/rtl/rtl-sym.h>
#ifdef __cplusplus
extern "C" {
diff --git a/cpukit/libdl/rtl-shell.c b/cpukit/libdl/rtl-shell.c
index 612ed35902..e1a197ed62 100644
--- a/cpukit/libdl/rtl-shell.c
+++ b/cpukit/libdl/rtl-shell.c
@@ -28,7 +28,7 @@
#include <rtems/rtl/rtl.h>
#include "rtl-chain-iterator.h"
#include "rtl-shell.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
/**
* The type of the shell handlers we have.
diff --git a/cpukit/libdl/rtl-string.c b/cpukit/libdl/rtl-string.c
index 4a49b77fe6..61ab4925d5 100644
--- a/cpukit/libdl/rtl-string.c
+++ b/cpukit/libdl/rtl-string.c
@@ -15,7 +15,7 @@
#include <string.h>
-#include "rtl-allocator.h"
+#include <rtems/rtl/rtl-allocator.h>
#include "rtl-string.h"
char*
diff --git a/cpukit/libdl/rtl-string.h b/cpukit/libdl/rtl-string.h
index a9ce6f51b4..bb61b83683 100644
--- a/cpukit/libdl/rtl-string.h
+++ b/cpukit/libdl/rtl-string.h
@@ -16,7 +16,7 @@
#if !defined (_RTEMS_RTL_STRING_H_)
#define _RTEMS_RTL_STRING_H_
-#include "rtl-indirect-ptr.h"
+#include <rtems/rtl/rtl-indirect-ptr.h>
#ifdef __cplusplus
extern "C" {
diff --git a/cpukit/libdl/rtl-sym.c b/cpukit/libdl/rtl-sym.c
index 2bda78d7a4..17eca99738 100644
--- a/cpukit/libdl/rtl-sym.c
+++ b/cpukit/libdl/rtl-sym.c
@@ -25,8 +25,8 @@
#include <rtems/rtl/rtl.h>
#include "rtl-error.h"
-#include "rtl-sym.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-sym.h>
+#include <rtems/rtl/rtl-trace.h>
/**
* The single symbol forced into the global symbol table that is used to load a
diff --git a/cpukit/libdl/rtl-trace.c b/cpukit/libdl/rtl-trace.c
index 42b3995de5..d5e4b9e5ec 100644
--- a/cpukit/libdl/rtl-trace.c
+++ b/cpukit/libdl/rtl-trace.c
@@ -23,7 +23,7 @@
#include <stdio.h>
#include <string.h>
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
#if RTEMS_RTL_TRACE
static rtems_rtl_trace_mask rtems_rtl_trace_flags;
diff --git a/cpukit/libdl/rtl-unresolved.c b/cpukit/libdl/rtl-unresolved.c
index 0bcc5f9cb5..0e318f4805 100644
--- a/cpukit/libdl/rtl-unresolved.c
+++ b/cpukit/libdl/rtl-unresolved.c
@@ -25,8 +25,8 @@
#include <rtems/rtl/rtl.h>
#include "rtl-error.h"
-#include "rtl-unresolved.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-unresolved.h>
+#include <rtems/rtl/rtl-trace.h>
static rtems_rtl_unresolv_block_t*
rtems_rtl_unresolved_block_alloc (rtems_rtl_unresolved_t* unresolved)
diff --git a/cpukit/libdl/rtl.c b/cpukit/libdl/rtl.c
index 505225116e..e2603c8e2b 100644
--- a/cpukit/libdl/rtl.c
+++ b/cpukit/libdl/rtl.c
@@ -26,10 +26,10 @@
#include <rtems/libio_.h>
#include <rtems/rtl/rtl.h>
-#include "rtl-allocator.h"
+#include <rtems/rtl/rtl-allocator.h>
#include "rtl-error.h"
#include "rtl-string.h"
-#include "rtl-trace.h"
+#include <rtems/rtl/rtl-trace.h>
/**
* Semaphore configuration to create a mutex.