2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>

* score/inline/rtems/score/schedulersimple.inl,
	score/src/schedulersimpleyield.c: Fix violations of naming
	convention.
This commit is contained in:
Joel Sherrill
2011-05-17 19:49:26 +00:00
parent ba7bc099a8
commit 2fa07e025c
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
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

View File

@@ -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
)

View File

@@ -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 );