/** * @file * * @brief Announce a Clock Tick * @ingroup ClassicClock */ /* * COPYRIGHT (c) 1989-2009. * 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. */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include rtems_status_code rtems_clock_tick( void ) { _TOD_Tickle_ticks(); _Watchdog_Tickle_ticks(); _Scheduler_Tick(); if ( _Thread_Is_context_switch_necessary() && _Thread_Dispatch_is_enabled() ) _Thread_Dispatch(); return RTEMS_SUCCESSFUL; }