source: rtems/cpukit/score/src/coretod.c @ 8ae37323

4.115
Last change on this file since 8ae37323 was 0a84c298, checked in by Joel Sherrill <joel.sherrill@…>, on 07/23/14 at 20:37:03

coretod*.c: Fix Doxygen group and comment formatting

  • Property mode set to 100644
File size: 871 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Initializes the Time of Day Handler
5 *
6 * @ingroup ScoreTOD
7 */
8
9/*  COPYRIGHT (c) 1989-2014.
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.