comparison gcc/ada/libgnarl/s-linux__sparc.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- --
68 EAGAIN : constant := 11; 68 EAGAIN : constant := 11;
69 EINTR : constant := 4; 69 EINTR : constant := 4;
70 EINVAL : constant := 22; 70 EINVAL : constant := 22;
71 ENOMEM : constant := 12; 71 ENOMEM : constant := 12;
72 EPERM : constant := 1; 72 EPERM : constant := 1;
73 ETIMEDOUT : constant := 110; 73 ETIMEDOUT : constant := 60;
74 74
75 ------------- 75 -------------
76 -- Signals -- 76 -- Signals --
77 ------------- 77 -------------
78 78
79 SIGHUP : constant := 1; -- hangup 79 SIGHUP : constant := 1; -- hangup
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 SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future 84 SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future
85 SIGIOT : constant := 6; -- IOT instruction 85 SIGIOT : constant := 6; -- IOT instruction
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
110 SIGLOST : constant := 29; -- File lock lost 110 SIGLOST : constant := 29; -- File lock lost
111 SIGPWR : constant := 29; -- power-fail restart 111 SIGPWR : constant := 29; -- power-fail restart
112 SIGUSR1 : constant := 30; -- user defined signal 1 112 SIGUSR1 : constant := 30; -- user defined signal 1
113 SIGUSR2 : constant := 31; -- user defined signal 2 113 SIGUSR2 : constant := 31; -- user defined signal 2
114 114
115 SIGLTHRRES : constant := 32; -- GNU/LinuxThreads restart signal 115 SIG32 : constant := 32; -- glibc internal signal
116 SIGLTHRCAN : constant := 33; -- GNU/LinuxThreads cancel signal 116 SIG33 : constant := 33; -- glibc internal signal
117 SIGLTHRDBG : constant := 34; -- GNU/LinuxThreads debugger signal 117 SIG34 : constant := 34; -- glibc internal signal
118 118
119 SIGUNUSED : constant := 0; 119 SIGUNUSED : constant := 0;
120 SIGSTKFLT : constant := 0; 120 SIGSTKFLT : constant := 0;
121 -- These don't exist for Linux/SPARC. The constants are present 121 -- These don't exist for Linux/SPARC. The constants are present
122 -- so that we can continue to use a-intnam-linux.ads. 122 -- so that we can continue to use a-intnam-linux.ads.