summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/rtl-unwind-dw2.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-12 17:46:49 +1000
committerChris Johns <chrisj@rtems.org>2018-04-12 17:57:40 +1000
commitf59d435d16261b04f97e293ab075e79624caf11d (patch)
treed37bc351bc95541388740069541f605af71203ff /cpukit/libdl/rtl-unwind-dw2.h
parenttestsuites/dl06: Add a test for RAP format. (diff)
downloadrtems-f59d435d16261b04f97e293ab075e79624caf11d.tar.bz2
libdl: Remove _t from all structures as this is reserved for the standards
Diffstat (limited to 'cpukit/libdl/rtl-unwind-dw2.h')
-rw-r--r--cpukit/libdl/rtl-unwind-dw2.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/libdl/rtl-unwind-dw2.h b/cpukit/libdl/rtl-unwind-dw2.h
index 55b97970c2..ef76a3771b 100644
--- a/cpukit/libdl/rtl-unwind-dw2.h
+++ b/cpukit/libdl/rtl-unwind-dw2.h
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 2016 Chris Johns <chrisj@rtems.org>
+ * COPYRIGHT (c) 2016, 2018 Chris Johns <chrisj@rtems.org>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
@@ -42,9 +42,9 @@ extern "C" {
* @retval true The section contains unwind information.
* @retval false The section does not contain unwind information.
*/
-bool rtems_rtl_elf_unwind_dw2_parse (const rtems_rtl_obj_t* obj,
- const char* name,
- uint32_t flags);
+bool rtems_rtl_elf_unwind_dw2_parse (const rtems_rtl_obj* obj,
+ const char* name,
+ uint32_t flags);
/**
* Architecture specific handler to add an object file's unwind information to
@@ -54,7 +54,7 @@ bool rtems_rtl_elf_unwind_dw2_parse (const rtems_rtl_obj_t* obj,
* @retval true The unwind information has been registered.
* @retval false The unwind information could not be registered.
*/
-bool rtems_rtl_elf_unwind_dw2_register (const rtems_rtl_obj_t* obj);
+bool rtems_rtl_elf_unwind_dw2_register (const rtems_rtl_obj* obj);
/**
* Architecture specific handler to remove an object file's unwind information
@@ -64,7 +64,7 @@ bool rtems_rtl_elf_unwind_dw2_register (const rtems_rtl_obj_t* obj);
* @retval true The unwind information has been deregistered.
* @retval false The unwind information could not be deregistered.
*/
-bool rtems_rtl_elf_unwind_dw2_deregister (const rtems_rtl_obj_t* obj);
+bool rtems_rtl_elf_unwind_dw2_deregister (const rtems_rtl_obj* obj);
/**
* Read signed and unsigned LEB128 values.