/* * Thread Handler * * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * $Id$ */ #include #include #include #include #include #include #include #include #include #include #include #include #include /*PAGE * * _Thread_Idle_body * * This kernel routine is the idle thread. The idle thread runs any time * no other thread is ready to run. This thread loops forever with * interrupts enabled. * * Input parameters: * ignored - this parameter is ignored * * Output parameters: NONE */ #if (CPU_PROVIDES_IDLE_THREAD_BODY == FALSE) Thread _Thread_Idle_body( unsigned32 ignored ) { for( ; ; ) ; } #endif