comparison gcc/ada/libgnarl/s-linux__hppa.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) 2008-2018, Free Software Foundation, Inc. -- 9 -- Copyright (C) 2008-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 SIGEMT : constant := 7; -- EMT 86 SIGEMT : constant := 7; -- EMT
87 SIGFPE : constant := 8; -- floating point exception 87 SIGFPE : constant := 8; -- floating point exception
88 SIGKILL : constant := 9; -- kill (cannot be caught or ignored) 88 SIGKILL : constant := 9; -- kill (cannot be caught or ignored)
89 SIGBUS : constant := 10; -- bus error 89 SIGBUS : constant := 10; -- bus error
90 SIGSEGV : constant := 11; -- segmentation violation 90 SIGSEGV : constant := 11; -- segmentation violation
111 SIGLOST : constant := 30; -- File lock lost 111 SIGLOST : constant := 30; -- File lock lost
112 SIGUNUSED : constant := 31; -- unused signal (GNU/Linux) 112 SIGUNUSED : constant := 31; -- unused signal (GNU/Linux)
113 SIGXCPU : constant := 33; -- CPU time limit exceeded 113 SIGXCPU : constant := 33; -- CPU time limit exceeded
114 SIGXFSZ : constant := 34; -- filesize limit exceeded 114 SIGXFSZ : constant := 34; -- filesize limit exceeded
115 SIGSTKFLT : constant := 36; -- coprocessor stack fault (Linux) 115 SIGSTKFLT : constant := 36; -- coprocessor stack fault (Linux)
116 SIGLTHRRES : constant := 37; -- GNU/LinuxThreads restart signal 116 SIG32 : constant := 37; -- glibc internal signal
117 SIGLTHRCAN : constant := 38; -- GNU/LinuxThreads cancel signal 117 SIG33 : constant := 38; -- glibc internal signal
118 SIGLTHRDBG : constant := 39; -- GNU/LinuxThreads debugger signal 118 SIG34 : constant := 39; -- glibc internal signal
119 119
120 -- struct_sigaction offsets 120 -- struct_sigaction offsets
121 121
122 sa_handler_pos : constant := 0; 122 sa_handler_pos : constant := 0;
123 sa_flags_pos : constant := Standard'Address_Size / 8; 123 sa_flags_pos : constant := Standard'Address_Size / 8;