summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-17 19:49:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-17 19:49:26 +0000
commit2fa07e025c3e99fba5e23daa5e558700e4e8fcd4 (patch)
tree685b382576dce0a6f8ea82033f6184797b7003d4 /cpukit
parent2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-2fa07e025c3e99fba5e23daa5e558700e4e8fcd4.tar.bz2
2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/inline/rtems/score/schedulersimple.inl, score/src/schedulersimpleyield.c: Fix violations of naming convention.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/score/inline/rtems/score/schedulersimple.inl2
-rw-r--r--cpukit/score/src/schedulersimpleyield.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 7615aae0c1..4905ea87b2 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,11 @@
2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * score/inline/rtems/score/schedulersimple.inl,
+ score/src/schedulersimpleyield.c: Fix violations of naming
+ convention.
+
+2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
PR 1789/cpukit
* sapi/include/confdefs.h, score/Makefile.am, score/preinstall.am: Add
Simple SMP Priority Scheduler.
diff --git a/cpukit/score/inline/rtems/score/schedulersimple.inl b/cpukit/score/inline/rtems/score/schedulersimple.inl
index 9d70540165..5e8178c025 100644
--- a/cpukit/score/inline/rtems/score/schedulersimple.inl
+++ b/cpukit/score/inline/rtems/score/schedulersimple.inl
@@ -35,7 +35,7 @@
* @param[in] the_ready_queue is a pointer to the ready queue head
* @param[in] the_thread is the thread to be blocked
*/
-RTEMS_INLINE_ROUTINE void _Scheduler_simple_Ready_queue_Requeue(
+RTEMS_INLINE_ROUTINE void _Scheduler_simple_Ready_queue_requeue(
Scheduler_Control *the_ready_queue,
Thread_Control *the_thread
)
diff --git a/cpukit/score/src/schedulersimpleyield.c b/cpukit/score/src/schedulersimpleyield.c
index 61e80db7e2..272a0f96d0 100644
--- a/cpukit/score/src/schedulersimpleyield.c
+++ b/cpukit/score/src/schedulersimpleyield.c
@@ -29,7 +29,7 @@ void _Scheduler_simple_Yield( void )
executing = _Thread_Executing;
_ISR_Disable( level );
- _Scheduler_simple_Ready_queue_Requeue(&_Scheduler, executing);
+ _Scheduler_simple_Ready_queue_requeue(&_Scheduler, executing);
_ISR_Flash( level );