[rtems commit] score: Typo

Sebastian Huber sebh at rtems.org
Mon Jul 13 08:08:02 UTC 2015


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

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Sat Jul 11 22:04:32 2015 +0200

score: Typo

---

 cpukit/score/include/rtems/score/threadqimpl.h | 4 ++--
 testsuites/sptests/spthreadq01/init.c          | 2 +-
 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 32217ad..b8982ec 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 ce47760..07118a3 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




More information about the vc mailing list