summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersmpdebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersmpdebug.c')
-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