source: rtems/cpukit/rtems/src/clockgettickspersecond.c @ 27cfe7c

5
Last change on this file since 27cfe7c was 27cfe7c, checked in by Sebastian Huber <sebastian.huber@…>, on 10/20/17 at 06:31:36

score: Add _Watchdog_Ticks_per_second

This value is frequently used. Avoid the function call overhead and the
integer division at run-time.

Update #3117.
Update #3182.

  • Property mode set to 100644
File size: 509 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
23rtems_interval rtems_clock_get_ticks_per_second(void)
24{
25  return _Watchdog_Ticks_per_second;
26}
Note: See TracBrowser for help on using the repository browser.