summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadinitialize.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
commit05279b84b4a0f798b43ce1731784b7db577e772f (patch)
tree4079787381b3993b1f1ea00e4d9083563f8e1252 /cpukit/score/src/threadinitialize.c
parent2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-05279b84b4a0f798b43ce1731784b7db577e772f.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/score/src/threadinitialize.c')
-rw-r--r--cpukit/score/src/threadinitialize.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/score/src/threadinitialize.c b/cpukit/score/src/threadinitialize.c
index 172f3cad1b..f7eb5e9ce0 100644
--- a/cpukit/score/src/threadinitialize.c
+++ b/cpukit/score/src/threadinitialize.c
@@ -75,7 +75,7 @@ boolean _Thread_Initialize(
actual_stack_size = stack_size;
actual_stack_size = _Thread_Stack_Allocate( the_thread, actual_stack_size );
-
+
if ( !actual_stack_size )
return FALSE; /* stack allocation failed */
@@ -96,7 +96,7 @@ boolean _Thread_Initialize(
/*
* Allocate the floating point area for this thread
*/
-
+
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
if ( is_fp ) {
@@ -117,9 +117,9 @@ boolean _Thread_Initialize(
/*
* Clear the libc reent hook.
*/
-
+
the_thread->libc_reent = NULL;
-
+
/*
* Allocate the extensions area for this thread
*/
@@ -141,7 +141,7 @@ boolean _Thread_Initialize(
}
} else
extensions_area = NULL;
-
+
the_thread->extensions = (void **) extensions_area;
/*
@@ -185,7 +185,7 @@ boolean _Thread_Initialize(
the_thread->real_priority = priority;
the_thread->Start.initial_priority = priority;
the_thread->ticks_executed = 0;
-
+
_Thread_Set_priority( the_thread, priority );
/*
@@ -214,5 +214,5 @@ boolean _Thread_Initialize(
}
return TRUE;
-
+
}