summaryrefslogtreecommitdiffstats
path: root/tools/schedsim/shell/schedsim_priority/printheir_executing.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/schedsim/shell/schedsim_priority/printheir_executing.c')
-rw-r--r--tools/schedsim/shell/schedsim_priority/printheir_executing.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/schedsim/shell/schedsim_priority/printheir_executing.c b/tools/schedsim/shell/schedsim_priority/printheir_executing.c
deleted file mode 100644
index b0855d3fc4..0000000000
--- a/tools/schedsim/shell/schedsim_priority/printheir_executing.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * printheir_executing
- *
- * COPYRIGHT (c) 1989-2010.
- * 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.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <stdio.h>
-#include <rtems.h>
-
-void PRINT_EXECUTING() {
- printf(
- " Thread Executing: 0x%08x priority=%ld\n",
- _Thread_Executing->Object.id,
- (long) _Thread_Executing->current_priority
- );
-}
-
-void PRINT_HEIR() {
- printf(
- " Thread Heir: 0x%08x priority=%ld\n",
- _Thread_Heir->Object.id,
- (long) _Thread_Heir->current_priority
- );
-}