summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-07-11 22:04:32 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-07-13 08:56:57 +0200
commit934177315225c152ac4ff57cd617b9260d35ccaa (patch)
tree8af0ec08a01fb01b7dc283cc8263850f6a9e1359
parentbsps/powerpc: Fix small-data area issue (diff)
downloadrtems-934177315225c152ac4ff57cd617b9260d35ccaa.tar.bz2
score: Typo
-rw-r--r--cpukit/score/include/rtems/score/threadqimpl.h4
-rw-r--r--testsuites/sptests/spthreadq01/init.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/threadqimpl.h b/cpukit/score/include/rtems/score/threadqimpl.h
index 32217ad73e..b8982ecf1f 100644
--- a/cpukit/score/include/rtems/score/threadqimpl.h
+++ b/cpukit/score/include/rtems/score/threadqimpl.h
@@ -353,7 +353,7 @@ void _Thread_queue_Initialize(
.Lock = ISR_LOCK_INITIALIZER( name ) \
}
- #define THREAD_QUEUE_PRIORIY_INITIALIZER( designator, name ) { \
+ #define THREAD_QUEUE_PRIORITY_INITIALIZER( designator, name ) { \
.Queues = { \
.Priority = RBTREE_INITIALIZER_EMPTY( designator.Queues.Priority ) \
}, \
@@ -368,7 +368,7 @@ void _Thread_queue_Initialize(
.operations = &_Thread_queue_Operations_FIFO \
}
- #define THREAD_QUEUE_PRIORIY_INITIALIZER( designator, name ) { \
+ #define THREAD_QUEUE_PRIORITY_INITIALIZER( designator, name ) { \
.Queues = { \
.Priority = RBTREE_INITIALIZER_EMPTY( designator.Queues.Priority ) \
}, \
diff --git a/testsuites/sptests/spthreadq01/init.c b/testsuites/sptests/spthreadq01/init.c
index ce47760e2d..07118a3a19 100644
--- a/testsuites/sptests/spthreadq01/init.c
+++ b/testsuites/sptests/spthreadq01/init.c
@@ -22,7 +22,7 @@ static Thread_queue_Control fifo_queue =
THREAD_QUEUE_FIFO_INITIALIZER( fifo_queue, "FIFO" );
static Thread_queue_Control prio_queue =
- THREAD_QUEUE_PRIORIY_INITIALIZER( prio_queue, "Prio" );
+ THREAD_QUEUE_PRIORITY_INITIALIZER( prio_queue, "Prio" );
static rtems_task Init(
rtems_task_argument ignored