summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-12 13:54:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-12 13:54:30 +0000
commit68c6900dd2a472d0b48f86e9694bde15fcc8d979 (patch)
tree6dae400f1ea76a9dd51f8eb7ede0c8545b7fab50 /cpukit/score/include
parent2011-05-12 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-68c6900dd2a472d0b48f86e9694bde15fcc8d979.tar.bz2
2011-05-12 Joel Sherrill <joel.sherrilL@OARcorp.com>
* score/include/rtems/score/schedulersimple.h, score/inline/rtems/score/schedulersimple.inl, score/src/schedulersimpleenqueue.c, score/src/schedulersimpleenqueuefirst.c, score/src/schedulersimplereadyqueueenqueue.c, score/src/schedulersimplereadyqueueenqueuefirst.c, score/src/schedulersimpleunblock.c: Correct names as pointed out by Gedare.
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/schedulersimple.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/schedulersimple.h b/cpukit/score/include/rtems/score/schedulersimple.h
index ea060ea59c..0e2187f10d 100644
--- a/cpukit/score/include/rtems/score/schedulersimple.h
+++ b/cpukit/score/include/rtems/score/schedulersimple.h
@@ -162,26 +162,26 @@ void _Scheduler_simple_Free(
);
/**
- * _Scheduler_simple_Ready_queue_Enqueue
+ * _Scheduler_simple_Ready_queue_enqueue
*
* This routine puts @a the_thread on the ready queue
* at the end of its priority group.
*
* @param[in] the_thread - pointer to a thread control block
*/
-void _Scheduler_simple_Ready_queue_Enqueue(
+void _Scheduler_simple_Ready_queue_enqueue(
Thread_Control *the_thread
);
/**
- * _Scheduler_simple_Ready_queue_Enqueue_first
+ * _Scheduler_simple_Ready_queue_enqueue_first
*
* This routine puts @a the_thread on to the ready queue
* at the beginning of its priority group.
*
* @param[in] the_thread - pointer to a thread control block
*/
-void _Scheduler_simple_Ready_queue_Enqueue_first(
+void _Scheduler_simple_Ready_queue_enqueue_first(
Thread_Control *the_thread
);