source: rtems/cpukit/score/src/ts64set.c @ f839bf5a

4.115
Last change on this file since f839bf5a was f839bf5a, checked in by Christopher Kerl <zargyyoyo@…>, on 12/01/12 at 14:47:07

score misc: Score misc: Clean up Doxygen #10 (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.

http://www.google-melange.com/gci/task/view/google/gci2012/7983216

  • Property mode set to 100644
File size: 680 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Set Timestamp to Specified Seconds and Nanoseconds
5 *
6 * @ingroup SuperCore
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2008.
11 *  On-Line Applications Research Corporation (OAR).
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#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/score/timestamp.h>
23
24#if CPU_TIMESTAMP_USE_INT64 == TRUE
25void _Timestamp64_Set(
26  Timestamp64_Control *_time,
27  Timestamp64_Control  _seconds,
28  Timestamp64_Control  _nanoseconds
29)
30{
31  _Timestamp64_implementation_Set( _time, _seconds, _nanoseconds );
32}
33#endif
Note: See TracBrowser for help on using the repository browser.