comparison gcc/ada/libgnarl/s-linux__alpha.ads @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
4 -- -- 4 -- --
5 -- S Y S T E M . L I N U X -- 5 -- S Y S T E M . L I N U X --
6 -- -- 6 -- --
7 -- S p e c -- 7 -- S p e c --
8 -- -- 8 -- --
9 -- Copyright (C) 2009-2018, Free Software Foundation, Inc. -- 9 -- Copyright (C) 2009-2019, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under -- 11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- -- 12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- -- 13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
80 SIGINT : constant := 2; -- interrupt (rubout) 80 SIGINT : constant := 2; -- interrupt (rubout)
81 SIGQUIT : constant := 3; -- quit (ASCD FS) 81 SIGQUIT : constant := 3; -- quit (ASCD FS)
82 SIGILL : constant := 4; -- illegal instruction (not reset) 82 SIGILL : constant := 4; -- illegal instruction (not reset)
83 SIGTRAP : constant := 5; -- trace trap (not reset) 83 SIGTRAP : constant := 5; -- trace trap (not reset)
84 SIGIOT : constant := 6; -- IOT instruction 84 SIGIOT : constant := 6; -- IOT instruction
85 SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future 85 SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future
86 SIGFPE : constant := 8; -- floating point exception 86 SIGFPE : constant := 8; -- floating point exception
87 SIGKILL : constant := 9; -- kill (cannot be caught or ignored) 87 SIGKILL : constant := 9; -- kill (cannot be caught or ignored)
88 SIGBUS : constant := 10; -- bus error 88 SIGBUS : constant := 10; -- bus error
89 SIGSEGV : constant := 11; -- segmentation violation 89 SIGSEGV : constant := 11; -- segmentation violation
90 SIGSYS : constant := 12; -- bad system call
90 SIGPIPE : constant := 13; -- write on a pipe with no one to read it 91 SIGPIPE : constant := 13; -- write on a pipe with no one to read it
91 SIGALRM : constant := 14; -- alarm clock 92 SIGALRM : constant := 14; -- alarm clock
92 SIGTERM : constant := 15; -- software termination signal from kill 93 SIGTERM : constant := 15; -- software termination signal from kill
93 SIGURG : constant := 16; -- urgent condition on IO channel 94 SIGURG : constant := 16; -- urgent condition on IO channel
94 SIGSTOP : constant := 17; -- stop (cannot be caught or ignored) 95 SIGSTOP : constant := 17; -- stop (cannot be caught or ignored)
107 SIGWINCH : constant := 28; -- window size change 108 SIGWINCH : constant := 28; -- window size change
108 SIGPWR : constant := 29; -- power-fail restart 109 SIGPWR : constant := 29; -- power-fail restart
109 SIGUSR1 : constant := 30; -- user defined signal 1 110 SIGUSR1 : constant := 30; -- user defined signal 1
110 SIGUSR2 : constant := 31; -- user defined signal 2 111 SIGUSR2 : constant := 31; -- user defined signal 2
111 112
112 SIGLTHRRES : constant := 32; -- GNU/LinuxThreads restart signal 113 SIG32 : constant := 32; -- glibc internal signal
113 SIGLTHRCAN : constant := 33; -- GNU/LinuxThreads cancel signal 114 SIG33 : constant := 33; -- glibc internal signal
114 SIGLTHRDBG : constant := 34; -- GNU/LinuxThreads debugger signal 115 SIG34 : constant := 34; -- glibc internal signal
115 116
116 SIGADAABORT : constant := SIGABRT; 117 SIGADAABORT : constant := SIGABRT;
117 -- Change this if you want to use another signal for task abort. 118 -- Change this if you want to use another signal for task abort.
118 -- SIGTERM might be a good one. 119 -- SIGTERM might be a good one.
119 120