summaryrefslogtreecommitdiffstats
path: root/schedsim/shell/schedsim_priority/printheir_executing.c
blob: 62b64afce5cf94f0be1a54c459a03f55c4aaee17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 *  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
  );
}