diff options
Diffstat (limited to 'gcc/ada/s-interr-hwint.adb')
-rw-r--r-- | gcc/ada/s-interr-hwint.adb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ada/s-interr-hwint.adb b/gcc/ada/s-interr-hwint.adb index 1a43c952840..5cb38ea941c 100644 --- a/gcc/ada/s-interr-hwint.adb +++ b/gcc/ada/s-interr-hwint.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2013, 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- -- @@ -476,7 +476,11 @@ package body System.Interrupts is -- Install_Restricted_Handlers -- --------------------------------- - procedure Install_Restricted_Handlers (Handlers : New_Handler_Array) is + procedure Install_Restricted_Handlers + (Prio : Any_Priority; + Handlers : New_Handler_Array) + is + pragma Unreferenced (Prio); begin for N in Handlers'Range loop Attach_Handler (Handlers (N).Handler, Handlers (N).Interrupt, True); |