From 57be57c79969b2f27580bc9af6fb2b14f321ab19 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 14 May 2021 09:31:47 +0200 Subject: score: Return status in _Thread_Restart_other() This simplifies rtems_task_restart(). --- cpukit/score/src/threadrestart.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score') diff --git a/cpukit/score/src/threadrestart.c b/cpukit/score/src/threadrestart.c index 364d67d04e..dcbf11c713 100644 --- a/cpukit/score/src/threadrestart.c +++ b/cpukit/score/src/threadrestart.c @@ -524,7 +524,7 @@ void _Thread_Exit( _Thread_State_release( executing, &lock_context ); } -bool _Thread_Restart_other( +Status_Control _Thread_Restart_other( Thread_Control *the_thread, const Thread_Entry_information *entry, ISR_lock_Context *lock_context @@ -537,7 +537,7 @@ bool _Thread_Restart_other( if ( _States_Is_dormant( the_thread->current_state ) ) { _Thread_State_release( the_thread, lock_context ); - return false; + return STATUS_INCORRECT_STATE; } the_thread->Start.Entry = *entry; @@ -564,7 +564,7 @@ bool _Thread_Restart_other( } _Thread_Dispatch_enable( cpu_self ); - return true; + return STATUS_SUCCESSFUL; } void _Thread_Restart_self( -- cgit v1.2.3