From 934177315225c152ac4ff57cd617b9260d35ccaa Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Sat, 11 Jul 2015 22:04:32 +0200 Subject: 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 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 -- cgit v1.2.3