/* * $Id$ */ #if defined(__rtems__) #include #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 }