summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadrestart.c
diff options
context:
space:
mode:
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;
}