summaryrefslogtreecommitdiffstats
path: root/schedsim/shell/schedsim_priority/printheir_executing.c
diff options
context:
space:
mode:
Diffstat (limited to 'schedsim/shell/schedsim_priority/printheir_executing.c')
-rw-r--r--schedsim/shell/schedsim_priority/printheir_executing.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/schedsim/shell/schedsim_priority/printheir_executing.c b/schedsim/shell/schedsim_priority/printheir_executing.c
deleted file mode 100644
index 62b64af..0000000
--- a/schedsim/shell/schedsim_priority/printheir_executing.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * printheir_executing
- *
- * COPYRIGHT (c) 1989-2013.
- * 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.
- */
-
-#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
- );
-}