source: rtems/cpukit/score/src/coretod.c @ 25f5730f

4.115
Last change on this file since 25f5730f was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 880 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Initializes the Time of Day Handler
5 *
6 * @ingroup ScoreTODConstants
7 */
8
9/*  COPYRIGHT (c) 1989-2008.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/score/todimpl.h>
22
23static uint32_t _TOD_Nanoseconds_since_tick_default_handler( void )
24{
25  return 0;
26}
27
28void _TOD_Handler_initialization(void)
29{
30  TOD_Control *tod = &_TOD;
31
32  _ISR_lock_Initialize( &tod->lock, "TOD" );
33
34  _Timestamp_Set( &tod->now, TOD_SECONDS_1970_THROUGH_1988, 0 );
35
36  _Timestamp_Set_to_zero( &tod->uptime );
37
38  tod->nanoseconds_since_last_tick =
39    _TOD_Nanoseconds_since_tick_default_handler;
40
41  /* TOD has not been set */
42  tod->is_set = false;
43}
Note: See TracBrowser for help on using the repository browser.