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/rtems/src/taskrestart.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cpukit/rtems/src/taskrestart.c') diff --git a/cpukit/rtems/src/taskrestart.c b/cpukit/rtems/src/taskrestart.c index 6a56ff571b..00b0635cef 100644 --- a/cpukit/rtems/src/taskrestart.c +++ b/cpukit/rtems/src/taskrestart.c @@ -21,6 +21,7 @@ #endif #include +#include #include rtems_status_code rtems_task_restart( @@ -31,7 +32,7 @@ rtems_status_code rtems_task_restart( Thread_Control *the_thread; ISR_lock_Context lock_context; Thread_Entry_information entry; - bool ok; + Status_Control status; the_thread = _Thread_Get( id, &lock_context ); @@ -53,7 +54,7 @@ rtems_status_code rtems_task_restart( RTEMS_UNREACHABLE(); } - ok = _Thread_Restart_other( the_thread, &entry, &lock_context ); + status = _Thread_Restart_other( the_thread, &entry, &lock_context ); - return ok ? RTEMS_SUCCESSFUL : RTEMS_INCORRECT_STATE; + return _Status_Get( status ); } -- cgit v1.2.3