source: rtems/cpukit/rtems/src/clockgettickspersecond.c @ 66cb142

5
Last change on this file since 66cb142 was 34799c3b, checked in by Sebastian Huber <sebastian.huber@…>, on 10/24/17 at 07:35:06

rtems: rtems_clock_get_ticks_per_second()

Add macro implementation for rtems_clock_get_ticks_per_second() for
C/C++ to avoid the function call overhead. A
rtems_clock_get_ticks_per_second() is still provided for language
bindings (e.g. Ada).

  • Property mode set to 100644
File size: 550 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Obtain Ticks Per Seconds
5 *  @ingroup ClassicClock
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2008.
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/rtems/clock.h>
22
23#undef rtems_clock_get_ticks_per_second
24
25rtems_interval rtems_clock_get_ticks_per_second(void)
26{
27  return _Watchdog_Ticks_per_second;
28}
Note: See TracBrowser for help on using the repository browser.