source: rtems/cpukit/libcsupport/include/timerdrv.h @ d2b4fcd

4.104.114.84.95
Last change on this file since d2b4fcd was 4d3017a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/04 at 18:04:55

Add doxygen preamble.

  • Property mode set to 100644
File size: 676 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 __TIMER_DRIVER_h
20#define __TIMER_DRIVER_h
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/* functions */
27
28void Timer_initialize( void );
29
30uint32_t   Read_timer( void );
31
32rtems_status_code Empty_function( void );
33
34void Set_find_average_overhead(
35  rtems_boolean find_flag
36);
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
Note: See TracBrowser for help on using the repository browser.