summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadenabledispatch.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-17 16:03:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 07:50:37 +0200
commitceb0f6597c36fabbfcbdf0807fd87dd03a45cc5e (patch)
tree9870a0bcc83d45085fc8fb5cd1c9068c4b7256c4 /cpukit/score/src/threadenabledispatch.c
parentscore: Rename _ISR_Flash() into _ISR_Local_flash() (diff)
downloadrtems-ceb0f6597c36fabbfcbdf0807fd87dd03a45cc5e.tar.bz2
score: Remove the Giant lock
Update #2555.
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