summaryrefslogtreecommitdiffstats
path: root/task_priority/empty.c
blob: 61907d5409e5a8ab427b5a1a5048778d2ec39598 (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
/*
 *  $Id$
 */

#if defined(__rtems__)
#include <rtems.h>
#endif

int getPriority()
{
#if defined(__rtems__)
  printk( "ID=0x%08x ", _Thread_Executing->Object.id );

  return (int)_Thread_Executing->current_priority;
#endif
  return 0;
}

void empty()
{
  #if defined(__rtems__)
    // printk(".");
  #endif
}