summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadevaluatemode.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-24 22:40:32 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-24 22:40:32 +0000
commit569b3f41413f9b7b1b43cce256f4b8594dbeabdf (patch)
tree6d4f5be119a7dcdbe17324926115b616ea4bf9b2 /cpukit/score/src/threadevaluatemode.c
parent2010-06-24 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-569b3f41413f9b7b1b43cce256f4b8594dbeabdf.tar.bz2
2010-06-24 Gedare Bloom <giddyup44@yahoo.com>
PR 1589/cpukit * score/Makefile.am, score/include/rtems/score/thread.h, score/inline/rtems/score/thread.inl: Make _Thread_Evaluate_mode() an inline method. It is only used in one place and relatively simple. * score/src/threadevaluatemode.c: Removed.
Diffstat (limited to 'cpukit/score/src/threadevaluatemode.c')
-rw-r--r--cpukit/score/src/threadevaluatemode.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/cpukit/score/src/threadevaluatemode.c b/cpukit/score/src/threadevaluatemode.c
deleted file mode 100644
index 3aa46cd539..0000000000
--- a/cpukit/score/src/threadevaluatemode.c
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Thread Handler
- *
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/system.h>
-#include <rtems/score/apiext.h>
-#include <rtems/score/context.h>
-#include <rtems/score/interr.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/object.h>
-#include <rtems/score/priority.h>
-#include <rtems/score/states.h>
-#include <rtems/score/sysstate.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/threadq.h>
-#include <rtems/score/userext.h>
-#include <rtems/score/wkspace.h>
-
-/*PAGE
- *
- * _Thread_Evaluate_mode
- *
- * XXX
- */
-
-bool _Thread_Evaluate_mode( void )
-{
- Thread_Control *executing;
-
- executing = _Thread_Executing;
-
- if ( !_States_Is_ready( executing->current_state ) ||
- ( !_Thread_Is_heir( executing ) && executing->is_preemptible ) ) {
- _Context_Switch_necessary = true;
- return true;
- }
-
- return false;
-}