diff options
Diffstat (limited to 'gcc/ada/s-interr.ads')
-rw-r--r-- | gcc/ada/s-interr.ads | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ada/s-interr.ads b/gcc/ada/s-interr.ads index b91932162d5..8a97735b5ce 100644 --- a/gcc/ada/s-interr.ads +++ b/gcc/ada/s-interr.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2003 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- -- @@ -27,7 +27,7 @@ -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- --- Extensive contributions were provided by Ada Core Technologies Inc. -- +-- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ @@ -73,6 +73,12 @@ package System.Interrupts is type Interrupt_ID is range 0 .. System.OS_Interface.Max_Interrupt; + -- The following renaming is introduced so that the type is accessible + -- through rtsfind, otherwise the name clashes with its homonym in + -- ada.interrupts. + + subtype System_Interrupt_Id is Interrupt_ID; + type Parameterless_Handler is access protected procedure; ---------------------- |