diff options
Diffstat (limited to 'gcc/ada/a-intnam-darwin.ads')
-rw-r--r-- | gcc/ada/a-intnam-darwin.ads | 65 |
1 files changed, 32 insertions, 33 deletions
diff --git a/gcc/ada/a-intnam-darwin.ads b/gcc/ada/a-intnam-darwin.ads index 23d12f1..fbbb185 100644 --- a/gcc/ada/a-intnam-darwin.ads +++ b/gcc/ada/a-intnam-darwin.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1991-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1991-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- -- @@ -45,7 +45,6 @@ -- supported by the local system. with System.OS_Interface; --- used for names of interrupts package Ada.Interrupts.Names is @@ -53,100 +52,100 @@ 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. - SIGHUP : constant Interrupt_ID := + SIGHUP : constant Interrupt_ID := System.OS_Interface.SIGHUP; -- hangup - SIGINT : constant Interrupt_ID := + SIGINT : constant Interrupt_ID := System.OS_Interface.SIGINT; -- interrupt (rubout) - SIGQUIT : constant Interrupt_ID := + SIGQUIT : constant Interrupt_ID := System.OS_Interface.SIGQUIT; -- quit (ASCD FS) - SIGILL : constant Interrupt_ID := + SIGILL : constant Interrupt_ID := System.OS_Interface.SIGILL; -- illegal instruction (not reset) - SIGTRAP : constant Interrupt_ID := + SIGTRAP : constant Interrupt_ID := System.OS_Interface.SIGTRAP; -- trace trap (not reset) - SIGIOT : constant Interrupt_ID := + SIGIOT : constant Interrupt_ID := System.OS_Interface.SIGIOT; -- IOT instruction - SIGABRT : constant Interrupt_ID := -- used by abort, + SIGABRT : constant Interrupt_ID := -- used by abort, System.OS_Interface.SIGABRT; -- replace SIGIOT in the future - SIGEMT : constant Interrupt_ID := + SIGEMT : constant Interrupt_ID := System.OS_Interface.SIGEMT; -- EMT instruction - SIGFPE : constant Interrupt_ID := + SIGFPE : constant Interrupt_ID := System.OS_Interface.SIGFPE; -- floating point exception - SIGKILL : constant Interrupt_ID := + SIGKILL : constant Interrupt_ID := System.OS_Interface.SIGKILL; -- kill (cannot be caught or ignored) - SIGBUS : constant Interrupt_ID := + SIGBUS : constant Interrupt_ID := System.OS_Interface.SIGBUS; -- bus error - SIGSEGV : constant Interrupt_ID := + SIGSEGV : constant Interrupt_ID := System.OS_Interface.SIGSEGV; -- segmentation violation - SIGSYS : constant Interrupt_ID := + SIGSYS : constant Interrupt_ID := System.OS_Interface.SIGSYS; -- bad argument to system call - SIGPIPE : constant Interrupt_ID := -- write on a pipe with + SIGPIPE : constant Interrupt_ID := -- write on a pipe with System.OS_Interface.SIGPIPE; -- no one to read it - SIGALRM : constant Interrupt_ID := + SIGALRM : constant Interrupt_ID := System.OS_Interface.SIGALRM; -- alarm clock - SIGTERM : constant Interrupt_ID := + SIGTERM : constant Interrupt_ID := System.OS_Interface.SIGTERM; -- software termination signal from kill - SIGURG : constant Interrupt_ID := + SIGURG : constant Interrupt_ID := System.OS_Interface.SIGURG; -- urgent condition on IO channel - SIGSTOP : constant Interrupt_ID := + SIGSTOP : constant Interrupt_ID := System.OS_Interface.SIGSTOP; -- stop (cannot be caught or ignored) - SIGTSTP : constant Interrupt_ID := + SIGTSTP : constant Interrupt_ID := System.OS_Interface.SIGTSTP; -- user stop requested from tty - SIGCONT : constant Interrupt_ID := + SIGCONT : constant Interrupt_ID := System.OS_Interface.SIGCONT; -- stopped process has been continued - SIGCHLD : constant Interrupt_ID := + SIGCHLD : constant Interrupt_ID := System.OS_Interface.SIGCHLD; -- 4.3BSD's/POSIX name for SIGCLD - SIGTTIN : constant Interrupt_ID := + SIGTTIN : constant Interrupt_ID := System.OS_Interface.SIGTTIN; -- background tty read attempted - SIGTTOU : constant Interrupt_ID := + SIGTTOU : constant Interrupt_ID := System.OS_Interface.SIGTTOU; -- background tty write attempted - SIGIO : constant Interrupt_ID := -- input/output possible, + SIGIO : constant Interrupt_ID := -- input/output possible, System.OS_Interface.SIGIO; -- SIGPOLL alias (Solaris) - SIGXCPU : constant Interrupt_ID := + SIGXCPU : constant Interrupt_ID := System.OS_Interface.SIGXCPU; -- CPU time limit exceeded - SIGXFSZ : constant Interrupt_ID := + SIGXFSZ : constant Interrupt_ID := System.OS_Interface.SIGXFSZ; -- filesize limit exceeded SIGVTALRM : constant Interrupt_ID := System.OS_Interface.SIGVTALRM; -- virtual timer expired - SIGPROF : constant Interrupt_ID := + SIGPROF : constant Interrupt_ID := System.OS_Interface.SIGPROF; -- profiling timer expired - SIGWINCH : constant Interrupt_ID := + SIGWINCH : constant Interrupt_ID := System.OS_Interface.SIGWINCH; -- window size change - SIGINFO : constant Interrupt_ID := + SIGINFO : constant Interrupt_ID := System.OS_Interface.SIGINFO; -- information request - SIGUSR1 : constant Interrupt_ID := + SIGUSR1 : constant Interrupt_ID := System.OS_Interface.SIGUSR1; -- user defined signal 1 - SIGUSR2 : constant Interrupt_ID := + SIGUSR2 : constant Interrupt_ID := System.OS_Interface.SIGUSR2; -- user defined signal 2 end Ada.Interrupts.Names; |