source: rtems/cpukit/include/rtems/score/timecounterimpl.h @ 5803f37

5
Last change on this file since 5803f37 was 3e98049, checked in by Andreas Dachsberger <andreas.dachsberger@…>, on 04/17/19 at 15:42:41

doxygen: score: adjust doc in timecounterimpl.h to doxygen guidelines

Update #3706.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSScoreTimecounter
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 RTEMSScoreTimecounter
35 *
36 * @{
37 */
38
39/**
40 * @brief Sets the timecounter clock to the given value.
41 *
42 * @param bt The value to set the clock to.
43 * @param lock_context The interrupt lock context.
44 */
45void _Timecounter_Set_clock(
46  const struct bintime *bt,
47  ISR_lock_Context     *lock_context
48);
49
50/** @} */
51
52#ifdef __cplusplus
53}
54#endif /* __cplusplus */
55
56#endif /* _RTEMS_SCORE_TIMECOUNTERIMPL_H */
Note: See TracBrowser for help on using the repository browser.