diff options
Diffstat (limited to 'gcc/ada/a-intnam-mingw.ads')
-rw-r--r-- | gcc/ada/a-intnam-mingw.ads | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/gcc/ada/a-intnam-mingw.ads b/gcc/ada/a-intnam-mingw.ads index a8c5e4ee11a..d7a2de73f3a 100644 --- a/gcc/ada/a-intnam-mingw.ads +++ b/gcc/ada/a-intnam-mingw.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1997-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1997-2008, 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- -- @@ -37,7 +37,6 @@ -- by the local system. with System.OS_Interface; --- used for names of interrupts package Ada.Interrupts.Names is @@ -45,22 +44,22 @@ package Ada.Interrupts.Names is -- may be aliases. Also, for all signal names that are not supported on the -- current system the value of the corresponding constant will be zero. - SIGINT : constant Interrupt_ID := - System.OS_Interface.SIGINT; -- interrupt (rubout) + SIGINT : constant Interrupt_ID := -- interrupt (rubout) + System.OS_Interface.SIGINT; - SIGILL : constant Interrupt_ID := - System.OS_Interface.SIGILL; -- illegal instruction (not reset) + SIGILL : constant Interrupt_ID := -- illegal instruction (not reset) + System.OS_Interface.SIGILL; - SIGABRT : constant Interrupt_ID := -- used by abort, - System.OS_Interface.SIGABRT; -- replace SIGIOT in the future + SIGABRT : constant Interrupt_ID := -- used by abort (use SIGIOT in future) + System.OS_Interface.SIGABRT; - SIGFPE : constant Interrupt_ID := - System.OS_Interface.SIGFPE; -- floating point exception + SIGFPE : constant Interrupt_ID := -- floating point exception + System.OS_Interface.SIGFPE; - SIGSEGV : constant Interrupt_ID := - System.OS_Interface.SIGSEGV; -- segmentation violation + SIGSEGV : constant Interrupt_ID := -- segmentation violation + System.OS_Interface.SIGSEGV; - SIGTERM : constant Interrupt_ID := - System.OS_Interface.SIGTERM; -- software termination signal from kill + SIGTERM : constant Interrupt_ID := -- software termination signal from kill + System.OS_Interface.SIGTERM; end Ada.Interrupts.Names; |