summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadcreateidle.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-17 15:34:51 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-04 13:36:09 +0100
commitc284a1600086784e3040194dff393049f9386492 (patch)
treea014ecb541f30edcd78968304cc579eb12831511 /cpukit/score/src/threadcreateidle.c
parentscore: Add Processor_mask, etc. (diff)
downloadrtems-c284a1600086784e3040194dff393049f9386492.tar.bz2
score: Rename Per_CPU_Control::started
Rename Per_CPU_Control::started into Per_CPU_Control::online to match standard nomenclature.
Diffstat (limited to 'cpukit/score/src/threadcreateidle.c')
-rw-r--r--cpukit/score/src/threadcreateidle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/threadcreateidle.c b/cpukit/score/src/threadcreateidle.c
index a07e238293..560804082b 100644
--- a/cpukit/score/src/threadcreateidle.c
+++ b/cpukit/score/src/threadcreateidle.c
@@ -90,7 +90,7 @@ void _Thread_Create_idle( void )
for ( cpu_index = 0 ; cpu_index < cpu_count ; ++cpu_index ) {
Per_CPU_Control *cpu = _Per_CPU_Get_by_index( cpu_index );
- if ( _Per_CPU_Is_processor_started( cpu ) ) {
+ if ( _Per_CPU_Is_processor_online( cpu ) ) {
_Thread_Create_idle_for_cpu( cpu );
}
}