From 1461aba8da79b7e37d789b2bd6032e09d7f888c2 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 27 Mar 2015 21:13:29 +0100 Subject: score: Use _Thread_Clear_state() for _Thread_Ready --- cpukit/score/src/threadready.c | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 cpukit/score/src/threadready.c (limited to 'cpukit/score/src/threadready.c') 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 -#include -#include - -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 ); -} -- cgit v1.2.3