summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadready.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-03 16:27:53 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-23 09:13:00 +0200
commit92635cb36d7af890c4fc76ac8323b79936001ddd (patch)
tree19c316dad30d9d84727f54b5531a9e09d4921be4 /cpukit/score/src/threadready.c
parentscore: Use default get/set affinity operation (diff)
downloadrtems-92635cb36d7af890c4fc76ac8323b79936001ddd.tar.bz2
score: Remove scheduler parameter from most ops
Remove the scheduler parameter from most high level scheduler operations like - _Scheduler_Block(), - _Scheduler_Unblock(), - _Scheduler_Change_priority(), - _Scheduler_Update_priority(), - _Scheduler_Release_job(), and - _Scheduler_Yield(). This simplifies the scheduler operations usage.
Diffstat (limited to 'cpukit/score/src/threadready.c')
-rw-r--r--cpukit/score/src/threadready.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/threadready.c b/cpukit/score/src/threadready.c
index d50debeff5..b79d8db84d 100644
--- a/cpukit/score/src/threadready.c
+++ b/cpukit/score/src/threadready.c
@@ -32,7 +32,7 @@ void _Thread_Ready(
the_thread->current_state = STATES_READY;
- _Scheduler_Unblock( _Scheduler_Get( the_thread ), the_thread );
+ _Scheduler_Unblock( the_thread );
_ISR_Enable( level );
}