source: rtems/c/src/exec/score/inline/tod.inl @ 03f2154e

4.104.114.84.95
Last change on this file since 03f2154e was 03f2154e, checked in by Joel Sherrill <joel.sherrill@…>, on 04/22/97 at 17:20:27

headers updated to reflect new style copyright notice as part
of switching to the modified GNU GPL.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*  tod.inl
2 *
3 *  This file contains the static inline implementation of the inlined routines
4 *  from the Time of Day Handler.
5 *
6 *  COPYRIGHT (c) 1989-1997.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may in
11 *  the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#ifndef __TIME_OF_DAY_inl
18#define __TIME_OF_DAY_inl
19
20/*PAGE
21 *
22 *  _TOD_Tickle_ticks
23 *
24 *  DESCRIPTION:
25 *
26 *  This routine increments the ticks field of the current time of
27 *  day at each clock tick.
28 */
29
30RTEMS_INLINE_ROUTINE void _TOD_Tickle_ticks( void )
31{
32  _TOD_Current.ticks += 1;
33  _Watchdog_Ticks_since_boot += 1;
34}
35
36/*PAGE
37 *
38 *  _TOD_Deactivate
39 *
40 *  DESCRIPTION:
41 *
42 *  This routine deactivates updating of the current time of day.
43 */
44
45RTEMS_INLINE_ROUTINE void _TOD_Deactivate( void )
46{
47  _Watchdog_Remove( &_TOD_Seconds_watchdog );
48}
49
50/*PAGE
51 *
52 *  _TOD_Activate
53 *
54 *  DESCRIPTION:
55 *
56 *  This routine activates updating of the current time of day.
57 */
58
59RTEMS_INLINE_ROUTINE void _TOD_Activate(
60  Watchdog_Interval ticks
61)
62{
63  _Watchdog_Insert_ticks( &_TOD_Seconds_watchdog, ticks );
64}
65
66#endif
67/* end of include file */
Note: See TracBrowser for help on using the repository browser.