source: rtems/cpukit/rtems/src/clocktick.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  Clock Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#include <rtems/system.h>
15#include <rtems/rtems/status.h>
16#include <rtems/rtems/clock.h>
17#include <rtems/score/isr.h>
18#include <rtems/score/thread.h>
19#include <rtems/score/tod.h>
20#include <rtems/score/watchdog.h>
21
22/*PAGE
23 *
24 *  rtems_clock_tick
25 *
26 *  This directive notifies the executve that a tick has occurred.
27 *  When the tick occurs the time manager updates and maintains
28 *  the calendar time, timeslicing, and any timeout delays.
29 *
30 *  Input parameters:  NONE
31 *
32 *  Output parameters:
33 *    RTEMS_SUCCESSFUL - always succeeds
34 *
35 *  NOTE: This routine only works for leap-years through 2099.
36 */
37
38rtems_status_code rtems_clock_tick( void )
39{
40  _TOD_Tickle_ticks();
41
42  _Watchdog_Tickle_ticks();
43
44  _Thread_Tickle_timeslice();
45
46  if ( _Thread_Is_context_switch_necessary() &&
47       _Thread_Is_dispatching_enabled() )
48    _Thread_Dispatch();
49
50  return RTEMS_SUCCESSFUL;
51}
Note: See TracBrowser for help on using the repository browser.