summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-18 14:26:58 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:56:58 +0200
commit570045ed7f8e83d4980ea1550b7469eb8599ff7b (patch)
treec2b96c41f42f865ae0f5b78bb7ba950a244b0a5c /cpukit/score/src
parentscore: Create semaphore implementation header (diff)
downloadrtems-570045ed7f8e83d4980ea1550b7469eb8599ff7b.tar.bz2
score: Add const qualifier
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/coresem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/coresem.c b/cpukit/score/src/coresem.c
index 14c706aa72..46d0334693 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
)
{