summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadsetstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadsetstate.c')
-rw-r--r--cpukit/score/src/threadsetstate.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/score/src/threadsetstate.c b/cpukit/score/src/threadsetstate.c
index 2769711dac..51128279b1 100644
--- a/cpukit/score/src/threadsetstate.c
+++ b/cpukit/score/src/threadsetstate.c
@@ -25,7 +25,7 @@
#include <rtems/score/assert.h>
#include <rtems/score/schedulerimpl.h>
-void _Thread_Set_state(
+States_Control _Thread_Set_state(
Thread_Control *the_thread,
States_Control state
)
@@ -47,4 +47,6 @@ void _Thread_Set_state(
}
_Scheduler_Release( the_thread, &lock_context );
+
+ return previous_state;
}