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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpukit/score/src/threadrestart.c b/cpukit/score/src/threadrestart.c
index 726cfa90cf..85803d8439 100644
--- a/cpukit/score/src/threadrestart.c
+++ b/cpukit/score/src/threadrestart.c
@@ -20,6 +20,7 @@
#include <rtems/score/threadimpl.h>
#include <rtems/score/userextimpl.h>
+#include <rtems/config.h>
bool _Thread_Restart(
Thread_Control *the_thread,
@@ -27,6 +28,15 @@ bool _Thread_Restart(
Thread_Entry_numeric_type numeric_argument
)
{
+#if defined( RTEMS_SMP )
+ if (
+ rtems_configuration_is_smp_enabled()
+ && !_Thread_Is_executing( the_thread )
+ ) {
+ return false;
+ }
+#endif
+
if ( !_States_Is_dormant( the_thread->current_state ) ) {
_Thread_Set_transient( the_thread );