diff options
Diffstat (limited to 'gcc/ada/s-inmaop-vms.adb')
-rw-r--r-- | gcc/ada/s-inmaop-vms.adb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ada/s-inmaop-vms.adb b/gcc/ada/s-inmaop-vms.adb index 11db041b5a8..ebd66950652 100644 --- a/gcc/ada/s-inmaop-vms.adb +++ b/gcc/ada/s-inmaop-vms.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2007, 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- -- @@ -31,7 +31,7 @@ -- -- ------------------------------------------------------------------------------ --- This is a OpenVMS/Alpha version of this package. +-- This is a OpenVMS/Alpha version of this package with System.OS_Interface; -- used for various type, constant, and operations @@ -49,7 +49,7 @@ with System.Task_Primitives.Operations; with System.Task_Primitives.Operations.DEC; -with Unchecked_Conversion; +with Ada.Unchecked_Conversion; package body System.Interrupt_Management.Operations is @@ -58,7 +58,9 @@ package body System.Interrupt_Management.Operations is use System.Tasking; use type unsigned_short; - function To_Address is new Unchecked_Conversion (Task_Id, System.Address); + function To_Address is + new Ada.Unchecked_Conversion (Task_Id, System.Address); + package POP renames System.Task_Primitives.Operations; ---------------------------- @@ -116,7 +118,7 @@ package body System.Interrupt_Management.Operations is -------------------- function To_unsigned_long is new - Unchecked_Conversion (System.Aux_DEC.Short_Address, unsigned_long); + Ada.Unchecked_Conversion (System.Aux_DEC.Short_Address, unsigned_long); function Interrupt_Wait (Mask : access Interrupt_Mask) return Interrupt_ID |