summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimpleyield.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimpleyield.c')
-rw-r--r--cpukit/score/src/schedulersimpleyield.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpukit/score/src/schedulersimpleyield.c b/cpukit/score/src/schedulersimpleyield.c
index ea41892ad0..65578d0bbb 100644
--- a/cpukit/score/src/schedulersimpleyield.c
+++ b/cpukit/score/src/schedulersimpleyield.c
@@ -26,11 +26,14 @@ void _Scheduler_simple_Yield(
Thread_Control *the_thread
)
{
+ Scheduler_simple_Context *context =
+ _Scheduler_simple_Get_context( scheduler );
ISR_Level level;
_ISR_Disable( level );
- _Scheduler_simple_Ready_queue_requeue( scheduler, the_thread );
+ _Chain_Extract_unprotected( &the_thread->Object.Node );
+ _Scheduler_simple_Insert_priority_fifo( &context->Ready, the_thread );
_ISR_Flash( level );