source: rtems/cpukit/libcsupport/include/timerdrv.h @ 4088d01d

4.104.114.95
Last change on this file since 4088d01d was 4088d01d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/01/08 at 11:42:19

Convert using "bool".

  • Property mode set to 100644
File size: 732 bytes
Line 
1/**
2 * @file rtems/timerdrv.h
3 *
4 *  This file describes the Timer Driver for all boards.
5 */
6 
7/*
8 *
9 *  COPYRIGHT (c) 1989-1999.
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.com/license/LICENSE.
15 *
16 *  $Id$
17 */
18
19#ifndef _RTEMS_TIMERDRV_H
20#define _RTEMS_TIMERDRV_H
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/* functions */
27
28void benchmark_timer_initialize( void );
29
30uint32_t   benchmark_timer_read( void );
31
32rtems_status_code benchmark_timer_empty_function( void );
33
34void benchmark_timer_disable_subtracting_average_overhead(
35  bool find_flag
36);
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
Note: See TracBrowser for help on using the repository browser.