source: rtems/cpukit/sapi/include/rtems/timespec.h @ 3cf4031

4.115
Last change on this file since 3cf4031 was 3cf4031, checked in by Alex Ivanov <alexivanov97@…>, on 12/28/12 at 23:48:12

Header File Doxygen Enhancement Task #1

  • Property mode set to 100644
File size: 808 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Timespec API
5 *
6 * This include file contains API for manipulating timespecs.
7 */
8
9/*
10 *  Copyright (c) 2012.
11 *  Krzysztof Miesowicz <krzysztof.miesowicz@gmail.com>
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 */
17
18#ifndef _RTEMS_TIMESPEC_H
19#define _RTEMS_TIMESPEC_H
20
21#include <rtems/score/timespec.h>
22
23/**
24 *  @defgroup TimespecAPI Timespec
25 *
26 *  @ingroup ClassicRTEMS
27 *
28 *  @brief Timespec API
29 *
30 */
31/**@{*/
32
33#include <stdbool.h> /* bool */
34#include <stdint.h> /* uint32_t */
35#include <time.h> /* struct timespec */
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41#include <rtems/timespec.inl>
42
43#ifdef __cplusplus
44}
45#endif
46
47/**@}*/
48
49#endif
50/* end of include file */
Note: See TracBrowser for help on using the repository browser.