From 05279b84b4a0f798b43ce1731784b7db577e772f Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 17 Apr 2004 13:32:13 +0000 Subject: Remove stray white spaces. --- cpukit/score/src/threadcreateidle.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'cpukit/score/src/threadcreateidle.c') diff --git a/cpukit/score/src/threadcreateidle.c b/cpukit/score/src/threadcreateidle.c index da6dde602d..fdfb24acf4 100644 --- a/cpukit/score/src/threadcreateidle.c +++ b/cpukit/score/src/threadcreateidle.c @@ -43,26 +43,26 @@ void _Thread_Create_idle( void ) * fields not explicitly assigned were explicitly zeroed by * _Workspace_Initialization. */ - + _Thread_Idle = _Thread_Internal_allocate(); - + /* * Initialize the IDLE task. */ - + #if (CPU_PROVIDES_IDLE_THREAD_BODY == TRUE) idle = (void *) _CPU_Thread_Idle_body; #else idle = (void *) _Thread_Idle_body; #endif - + if ( _CPU_Table.idle_task ) idle = _CPU_Table.idle_task; - + idle_task_stack_size = _CPU_Table.idle_task_stack_size; if ( idle_task_stack_size < STACK_MINIMUM_SIZE ) idle_task_stack_size = STACK_MINIMUM_SIZE; - + _Thread_Initialize( &_Thread_Internal_information, _Thread_Idle, @@ -76,15 +76,15 @@ void _Thread_Create_idle( void ) 0, /* all interrupts enabled */ (Objects_Name) _Thread_Idle_name ); - + /* * WARNING!!! This is necessary to "kick" start the system and * MUST be done before _Thread_Start is invoked. */ - + _Thread_Heir = _Thread_Executing = _Thread_Idle; - + _Thread_Start( _Thread_Idle, THREAD_START_NUMERIC, @@ -92,5 +92,5 @@ void _Thread_Create_idle( void ) NULL, 0 ); - + } -- cgit v1.2.3