summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadstart.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/threadstart.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/threadstart.c')
-rw-r--r--cpukit/score/src/threadstart.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/cpukit/score/src/threadstart.c b/cpukit/score/src/threadstart.c
index 9f8c9edc63..b55d8dc478 100644
--- a/cpukit/score/src/threadstart.c
+++ b/cpukit/score/src/threadstart.c
@@ -35,7 +35,7 @@
* and makes it ready to execute. After this routine executes, the
* thread competes with all other threads for CPU time.
*/
-
+
boolean _Thread_Start(
Thread_Control *the_thread,
Thread_Start_types the_prototype,
@@ -45,22 +45,22 @@ boolean _Thread_Start(
)
{
if ( _States_Is_dormant( the_thread->current_state ) ) {
-
+
the_thread->Start.entry_point = (Thread_Entry) entry_point;
-
+
the_thread->Start.prototype = the_prototype;
the_thread->Start.pointer_argument = pointer_argument;
the_thread->Start.numeric_argument = numeric_argument;
-
+
_Thread_Load_environment( the_thread );
-
+
_Thread_Ready( the_thread );
-
+
_User_extensions_Thread_start( the_thread );
-
+
return TRUE;
}
-
+
return FALSE;
-
+
}