diff options
Diffstat (limited to 'gcc/ada/5vosprim.adb')
-rw-r--r-- | gcc/ada/5vosprim.adb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ada/5vosprim.adb b/gcc/ada/5vosprim.adb index d06eca3f09e..6db0ccea5b1 100644 --- a/gcc/ada/5vosprim.adb +++ b/gcc/ada/5vosprim.adb @@ -6,8 +6,7 @@ -- -- -- B o d y -- -- -- --- -- --- Copyright (C) 1998-2001 Free Software Foundation, Inc. -- +-- Copyright (C) 1998-2002 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- -- @@ -110,11 +109,10 @@ package body System.OS_Primitives is --------------- -- Sys_Hiber -- --------------- - -- + -- Hibernate (until woken up) - -- + -- status = returned status - -- procedure Sys_Hiber (Status : out Cond_Value_Type); -- VMS system call to hibernate the current process @@ -174,6 +172,7 @@ package body System.OS_Primitives is ----------------- function To_Duration (T : OS_Time; Mode : Integer) return Duration is + pragma Warnings (Off, Mode); begin return Duration'Fixed_Value (T - VMS_Epoch_Offset) * 100; end To_Duration; |