[PATCH 20/25] score: Add const qualifier

Sebastian Huber sebastian.huber at embedded-brains.de
Thu Jul 18 14:26:08 UTC 2013


---
 cpukit/score/include/rtems/score/coresemimpl.h |    8 ++++----
 cpukit/score/src/coresem.c                     |    6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/cpukit/score/include/rtems/score/coresemimpl.h b/cpukit/score/include/rtems/score/coresemimpl.h
index 241ca41..62c1c2a 100644
--- a/cpukit/score/include/rtems/score/coresemimpl.h
+++ b/cpukit/score/include/rtems/score/coresemimpl.h
@@ -95,9 +95,9 @@ typedef void ( *CORE_semaphore_API_mp_support_callout )(
  *  @param[in] initial_value is the initial count of the semaphore
  */
 void _CORE_semaphore_Initialize(
-  CORE_semaphore_Control       *the_semaphore,
-  CORE_semaphore_Attributes    *the_semaphore_attributes,
-  uint32_t                      initial_value
+  CORE_semaphore_Control          *the_semaphore,
+  const CORE_semaphore_Attributes *the_semaphore_attributes,
+  uint32_t                         initial_value
 );
 
 #if defined(RTEMS_SCORE_CORESEM_ENABLE_SEIZE_BODY)
@@ -174,7 +174,7 @@ void _CORE_semaphore_Flush(
  * @return true if the priority attribute is enabled
  */
 RTEMS_INLINE_ROUTINE bool _CORE_semaphore_Is_priority(
-  CORE_semaphore_Attributes *the_attribute
+  const CORE_semaphore_Attributes *the_attribute
 )
 {
    return ( the_attribute->discipline == CORE_SEMAPHORE_DISCIPLINES_PRIORITY );
diff --git a/cpukit/score/src/coresem.c b/cpukit/score/src/coresem.c
index 14c706a..46d0334 100644
--- a/cpukit/score/src/coresem.c
+++ b/cpukit/score/src/coresem.c
@@ -26,9 +26,9 @@
 #include <rtems/score/threadq.h>
 
 void _CORE_semaphore_Initialize(
-  CORE_semaphore_Control       *the_semaphore,
-  CORE_semaphore_Attributes    *the_semaphore_attributes,
-  uint32_t                      initial_value
+  CORE_semaphore_Control          *the_semaphore,
+  const CORE_semaphore_Attributes *the_semaphore_attributes,
+  uint32_t                         initial_value
 )
 {
 
-- 
1.7.7




More information about the devel mailing list