summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-23 07:16:41 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-23 12:52:05 +0100
commitec17ad4c24a9b3f9c175240d66f8e39acf58e6d1 (patch)
treeb4303f6bc5a3a02ffa092c50d392822a17f3a2a3 /cpukit/score/src
parentarm: Fix _ARMV4_Exception_interrupt (diff)
downloadrtems-ec17ad4c24a9b3f9c175240d66f8e39acf58e6d1.tar.bz2
score: Delete obsolete scheduler debug aid
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/schedulersmpdebug.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/cpukit/score/src/schedulersmpdebug.c b/cpukit/score/src/schedulersmpdebug.c
deleted file mode 100644
index 1ccebba788..0000000000
--- a/cpukit/score/src/schedulersmpdebug.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * @file
- *
- * @ingroup ScoreScheduler
- *
- * @brief Scheduler SMP Debug Implementation
- */
-
-/*
- * Copyright (c) 2014 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Dornierstr. 4
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * 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/schedulerimpl.h>
-#include <rtems/score/schedulerpriorityimpl.h>
-
-#if defined(RTEMS_DEBUG)
-
-/*
- * Table with all valid state transitions for _Scheduler_Thread_change_state()
- * in case RTEMS_DEBUG is defined.
- */
-const bool _Scheduler_Thread_state_valid_state_changes[ 3 ][ 3 ] = {
- /* FROM / TO BLOCKED SCHEDULED READY */
- /* BLOCKED */ { true, true, true },
- /* SCHEDULED */ { true, true, true },
- /* READY */ { true, true, true }
-};
-
-/*
- * Table with all valid state transitions for
- * _Scheduler_SMP_Node_change_state() in case RTEMS_DEBUG is defined.
- */
-const bool _Scheduler_SMP_Node_valid_state_changes[ 3 ][ 3 ] = {
- /* FROM / TO BLOCKED SCHEDULED READY */
- /* BLOCKED */ { true, true, true },
- /* SCHEDULED */ { true, false, true },
- /* READY */ { true, true, false }
-};
-
-#endif