summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadrestart.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/threadrestart.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/threadrestart.c')
-rw-r--r--cpukit/score/src/threadrestart.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/src/threadrestart.c b/cpukit/score/src/threadrestart.c
index 167fa78563..606ae6e79c 100644
--- a/cpukit/score/src/threadrestart.c
+++ b/cpukit/score/src/threadrestart.c
@@ -35,7 +35,7 @@
* next time this thread executes, it will begin execution at its
* original starting point.
*/
-
+
boolean _Thread_Restart(
Thread_Control *the_thread,
void *pointer_argument,
@@ -43,22 +43,22 @@ boolean _Thread_Restart(
)
{
if ( !_States_Is_dormant( the_thread->current_state ) ) {
-
+
_Thread_Set_transient( the_thread );
_Thread_Reset( the_thread, pointer_argument, numeric_argument );
-
+
_Thread_Load_environment( the_thread );
-
+
_Thread_Ready( the_thread );
-
+
_User_extensions_Thread_restart( the_thread );
-
+
if ( _Thread_Is_executing ( the_thread ) )
_Thread_Restart_self();
-
+
return TRUE;
}
-
+
return FALSE;
}