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

4.104.114.84.95
Last change on this file since 7945944 was 7945944, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 08:04:27

New header guards.

  • Property mode set to 100644
File size: 678 bytes
RevLine 
[4d3017a]1/**
2 * @file rtems/timerdrv.h
[ac7d5ef0]3 *
4 *  This file describes the Timer Driver for all boards.
[4d3017a]5 */
6 
7/*
[ac7d5ef0]8 *
[08311cc3]9 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]10 *  On-Line Applications Research Corporation (OAR).
11 *
[98e4ebf5]12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
[0eae36c7]14 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]15 *
16 *  $Id$
17 */
18
[7945944]19#ifndef _RTEMS_TIMERDRV_H
20#define _RTEMS_TIMERDRV_H
[ac7d5ef0]21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/* functions */
27
28void Timer_initialize( void );
29
[83c5fc1]30uint32_t   Read_timer( void );
[ac7d5ef0]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.