summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadready.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-27 21:13:29 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-08 11:48:15 +0200
commit1461aba8da79b7e37d789b2bd6032e09d7f888c2 (patch)
tree6fb0c23f615bd95438102776a5ff53fcff8024d2 /cpukit/score/src/threadready.c
parentrtems: Atomically suspend/resume tasks (diff)
downloadrtems-1461aba8da79b7e37d789b2bd6032e09d7f888c2.tar.bz2
score: Use _Thread_Clear_state() for _Thread_Ready
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/threadready.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/cpukit/score/src/threadready.c b/cpukit/score/src/threadready.c
deleted file mode 100644
index 5375294fe9..0000000000
--- a/cpukit/score/src/threadready.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * @file
- *
- * @brief Thread Ready
- * @ingroup ScoreThread
- */
-
-/*
- * COPYRIGHT (c) 1989-2011.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/score/threadimpl.h>
-#include <rtems/score/isrlevel.h>
-#include <rtems/score/schedulerimpl.h>
-
-void _Thread_Ready(
- Thread_Control *the_thread
-)
-{
- ISR_lock_Context lock_context;
-
- _Scheduler_Acquire( the_thread, &lock_context );
-
- the_thread->current_state = STATES_READY;
-
- _Scheduler_Unblock( the_thread );
-
- _Scheduler_Release( the_thread, &lock_context );
-}