[rtems commit] libdl: Include <rtems/rtl/rtl-*.h>

Sebastian Huber sebh at rtems.org
Wed Dec 13 08:09:06 UTC 2017


Module:    rtems
Branch:    master
Commit:    990adc543816dbba116a8ada21fa3401c655bf4b
Changeset: http://git.rtems.org/rtems/commit/?id=990adc543816dbba116a8ada21fa3401c655bf4b

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Wed Dec 13 08:20:30 2017 +0100

libdl: Include <rtems/rtl/rtl-*.h>

Prepare for header file move to common include directory.

Update #3254.

---

 cpukit/libdl/rtl-allocator.c       | 2 +-
 cpukit/libdl/rtl-debugger.c        | 4 ++--
 cpukit/libdl/rtl-elf.c             | 4 ++--
 cpukit/libdl/rtl-elf.h             | 6 +++---
 cpukit/libdl/rtl-find-file.c       | 2 +-
 cpukit/libdl/rtl-mdreloc-arm.c     | 2 +-
 cpukit/libdl/rtl-mdreloc-bfin.c    | 2 +-
 cpukit/libdl/rtl-mdreloc-h8300.c   | 2 +-
 cpukit/libdl/rtl-mdreloc-i386.c    | 2 +-
 cpukit/libdl/rtl-mdreloc-lm32.c    | 2 +-
 cpukit/libdl/rtl-mdreloc-m68k.c    | 2 +-
 cpukit/libdl/rtl-mdreloc-mips.c    | 2 +-
 cpukit/libdl/rtl-mdreloc-moxie.c   | 2 +-
 cpukit/libdl/rtl-mdreloc-powerpc.c | 2 +-
 cpukit/libdl/rtl-mdreloc-sparc.c   | 2 +-
 cpukit/libdl/rtl-mdreloc-v850.c    | 2 +-
 cpukit/libdl/rtl-obj-cache.c       | 4 ++--
 cpukit/libdl/rtl-obj-comp.c        | 2 +-
 cpukit/libdl/rtl-obj.c             | 4 ++--
 cpukit/libdl/rtl-rap.c             | 6 +++---
 cpukit/libdl/rtl-rap.h             | 6 +++---
 cpukit/libdl/rtl-shell.c           | 2 +-
 cpukit/libdl/rtl-string.c          | 2 +-
 cpukit/libdl/rtl-string.h          | 2 +-
 cpukit/libdl/rtl-sym.c             | 4 ++--
 cpukit/libdl/rtl-trace.c           | 2 +-
 cpukit/libdl/rtl-unresolved.c      | 4 ++--
 cpukit/libdl/rtl.c                 | 4 ++--
 28 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/cpukit/libdl/rtl-allocator.c b/cpukit/libdl/rtl-allocator.c
index 9c5a204..575ce53 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 afbea8a..1ba826f 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 c2bac9f..47c92d5 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 cee0180..abe0889 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 e4eefd6..2bc89ed 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 d86cde1..7b47345 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 5a1fd26..b6542c3 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 0ef717b..ddc0dc1 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 c8f1e11..c653274 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 e7e2a4c..6175585 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 8a91ebc..5df739a 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 7ceac54..360719e 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 27b0cf6..dc41a30 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 a3cb6b3..06854a9 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 8d12394..e4143a9 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 7f958a5..f00c07f 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 c120c8d..00a2417 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 70f14d3..c49f614 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 3a22009..dd9a1cd 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 a413e09..2fe9c6b 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 eca6e9e..e96f342 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 612ed35..e1a197e 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 4a49b77..61ab492 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 a9ce6f5..bb61b83 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 2bda78d..17eca99 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 42b3995..d5e4b9e 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 0bcc5f9..0e318f4 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 5052251..e2603c8 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.



More information about the vc mailing list