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

4.104.114.95
Last change on this file since b873083 was b873083, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/08 at 19:42:12

2008-08-31 Joel Sherrill <joel.sherrill@…>

  • libcsupport/include/timerdrv.h: Rename timer driver methods to follow RTEMS programming conventions.
  • Property mode set to 100644
File size: 741 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  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.