summaryrefslogtreecommitdiffstats
path: root/schedsim/shell/schedsim_smpsimple/printheir_executing.c
blob: b3ad6a0a026cda1fce0d6cb3289128b79b658b39 (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
32
33
/*
 *  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>

extern uint32_t Schedsim_Current_cpu;

void PRINT_EXECUTING() {
  printf(
    "  CPU %d: Thread Executing 0x%08x priority=%ld\n",
     Schedsim_Current_cpu,
    _Thread_Executing->Object.id,
    (long) _Thread_Executing->current_priority
  );
}

void PRINT_HEIR() {
  printf( 
    "  CPU %d: Thread Heir 0x%08x priority=%ld\n",
    Schedsim_Current_cpu,
    _Thread_Heir->Object.id, 
    (long) _Thread_Heir->current_priority 
  );
}