summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/support/timer_driver.adb
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/ada-tests/support/timer_driver.adb')
-rw-r--r--c/src/ada-tests/support/timer_driver.adb45
1 files changed, 0 insertions, 45 deletions
diff --git a/c/src/ada-tests/support/timer_driver.adb b/c/src/ada-tests/support/timer_driver.adb
deleted file mode 100644
index caa2374759..0000000000
--- a/c/src/ada-tests/support/timer_driver.adb
+++ /dev/null
@@ -1,45 +0,0 @@
---
--- Timer_Driver / Body
---
--- Description:
---
--- This package is the body for the Timer Driver.
---
--- Dependencies:
---
---
---
--- COPYRIGHT (c) 1989-1997.
--- On-Line Applications Research Corporation (OAR).
--- Copyright assigned to U.S. Government, 1994.
---
--- The license and distribution terms for this file may in
--- the file LICENSE in this distribution or at
--- http://www.OARcorp.com/rtems/license.html.
---
--- $Id$
---
-
-with RTEMS;
-
-package body Timer_Driver is
-
---PAGE
---
--- Set_Find_Average_Overhead
---
---
-
- procedure Set_Find_Average_Overhead (
- Find_Flag : in Standard.Boolean
- ) is
- procedure Set_Find_Average_Overhead_base (
- Find_Flag : in RTEMS.Boolean
- );
- pragma Import (C, Set_Find_Average_Overhead_base,
- "Set_find_average_overhead");
- begin
- Set_Find_Average_Overhead_base (RTEMS.From_Ada_Boolean (Find_Flag));
- end Set_Find_Average_Overhead;
-
-end Timer_Driver;