summaryrefslogtreecommitdiffstats
path: root/tools/schedsim/shell/schedsim_priority/printheir_executing.c
blob: b0855d3fc4713a32e497564a2802a6fe63ea0d3c (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
30
31
/*
 *  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 
  );
}