source: rtems/cpukit/score/include/rtems/score/timecounterimpl.h @ 599d71f

5
Last change on this file since 599d71f was 599d71f, checked in by Sebastian Huber <sebastian.huber@…>, on 01/11/16 at 12:02:06

score: Statically initialize TOD handler

  • Property mode set to 100644
File size: 841 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup ScoreTimecounter
5 *
6 * @brief Timecounter Implementation
7 */
8
9/*
10 * Copyright (c) 2015 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef _RTEMS_SCORE_TIMECOUNTERIMPL_H
24#define _RTEMS_SCORE_TIMECOUNTERIMPL_H
25
26#include <rtems/score/timecounter.h>
27#include <sys/timetc.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif /* __cplusplus */
32
33/**
34 * @addtogroup ScoreTimecounter
35 *
36 * @{
37 */
38
39void _Timecounter_Set_clock( const struct timespec *ts );
40
41/** @} */
42
43#ifdef __cplusplus
44}
45#endif /* __cplusplus */
46
47#endif /* _RTEMS_SCORE_TIMECOUNTERIMPL_H */
Note: See TracBrowser for help on using the repository browser.