summaryrefslogtreecommitdiff
path: root/gcc/ada/a-retide.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-retide.adb')
-rw-r--r--gcc/ada/a-retide.adb15
1 files changed, 6 insertions, 9 deletions
diff --git a/gcc/ada/a-retide.adb b/gcc/ada/a-retide.adb
index 4f33a429f9d..9c64e96e0ac 100644
--- a/gcc/ada/a-retide.adb
+++ b/gcc/ada/a-retide.adb
@@ -6,9 +6,9 @@
-- --
-- B o d y --
-- --
--- $Revision: 1.28 $
+-- $Revision$
-- --
--- Copyright (C) 1991-1999 Florida State University --
+-- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -29,21 +29,18 @@
-- covered by the GNU Public License. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. It is --
--- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
--- State University (http://www.gnat.com). --
+-- now maintained by Ada Core Technologies, Inc. (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
with System.Task_Primitives.Operations;
-- Used for Timed_Delay
-with System.OS_Primitives;
--- Used for Delay_Modes
-
package body Ada.Real_Time.Delays is
package STPO renames System.Task_Primitives.Operations;
- package OSP renames System.OS_Primitives;
+
+ Absolute_RT : constant := 2;
-----------------
-- Delay_Until --
@@ -51,7 +48,7 @@ package body Ada.Real_Time.Delays is
procedure Delay_Until (T : Time) is
begin
- STPO.Timed_Delay (STPO.Self, To_Duration (T), OSP.Absolute_RT);
+ STPO.Timed_Delay (STPO.Self, To_Duration (T), Absolute_RT);
end Delay_Until;
-----------------