summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadenabledispatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadenabledispatch.c')
-rw-r--r--cpukit/score/src/threadenabledispatch.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/cpukit/score/src/threadenabledispatch.c b/cpukit/score/src/threadenabledispatch.c
deleted file mode 100644
index baf58a06d2..0000000000
--- a/cpukit/score/src/threadenabledispatch.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * @file
- *
- * @brief Enable Dispatching of Threads
- *
- * @ingroup ScoreThread
- */
-
-/*
- * _Thread_Enable_dispatch
- *
- *
- * 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/threaddispatch.h>
-
-#if defined (__THREAD_DO_NOT_INLINE_ENABLE_DISPATCH__ )
-void _Thread_Enable_dispatch( void )
-{
- _Thread_Enable_dispatch_body();
-}
-#endif