diff options
Diffstat (limited to 'gcc/ada/s-tpoben.ads')
-rw-r--r-- | gcc/ada/s-tpoben.ads | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ada/s-tpoben.ads b/gcc/ada/s-tpoben.ads index d19324d5a7b..d1cc4e7d6f3 100644 --- a/gcc/ada/s-tpoben.ads +++ b/gcc/ada/s-tpoben.ads @@ -7,7 +7,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2006, 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- -- @@ -46,7 +46,7 @@ with Ada.Finalization; -- used for Limited_Controlled -with Unchecked_Conversion; +with Ada.Unchecked_Conversion; package System.Tasking.Protected_Objects.Entries is pragma Elaborate_Body; @@ -148,9 +148,9 @@ package System.Tasking.Protected_Objects.Entries is -- generated by this declaration. function To_Address is - new Unchecked_Conversion (Protection_Entries_Access, System.Address); + new Ada.Unchecked_Conversion (Protection_Entries_Access, System.Address); function To_Protection is - new Unchecked_Conversion (System.Address, Protection_Entries_Access); + new Ada.Unchecked_Conversion (System.Address, Protection_Entries_Access); function Get_Ceiling (Object : Protection_Entries_Access) return System.Any_Priority; @@ -181,7 +181,8 @@ package System.Tasking.Protected_Objects.Entries is -- ceiling violation. procedure Lock_Entries - (Object : Protection_Entries_Access; Ceiling_Violation : out Boolean); + (Object : Protection_Entries_Access; + Ceiling_Violation : out Boolean); -- Same as above, but return the ceiling violation status instead of -- raising Program_Error. |