diff options
author | Matthias Klose <doko@ubuntu.com> | 2018-11-26 13:30:50 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2018-11-26 13:30:50 +0000 |
commit | 7548e4963140a1c8ec755a8b6dd58c7cb6008e3f (patch) | |
tree | b30d3e0c51347a83b1b5aca00f7997efa93eddc7 /gcc | |
parent | 14c5a314c819f444abb12af5fa51577265ef8793 (diff) | |
download | gcc-7548e4963140a1c8ec755a8b6dd58c7cb6008e3f.zip gcc-7548e4963140a1c8ec755a8b6dd58c7cb6008e3f.tar.gz gcc-7548e4963140a1c8ec755a8b6dd58c7cb6008e3f.tar.bz2 |
re PR ada/88191 (ada bootstrap failure on alpha-linux-gnu ("SIGSYS" not declared in "Linux"))
2018-11-26 Matthias Klose <doko@ubuntu.com>
PR ada/88191
* libgnarl/s-linux__alpha.ads: Define SIGSYS.
From-SVN: r266459
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/libgnarl/s-linux__alpha.ads | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 733bfe0..160ca99 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2018-11-26 Matthias Klose <doko@ubuntu.com> + + PR ada/88191 + * libgnarl/s-linux__alpha.ads: Define SIGSYS. + 2018-11-19 Alexandre Oliva <oliva@adacore.com> PR ada/81878 diff --git a/gcc/ada/libgnarl/s-linux__alpha.ads b/gcc/ada/libgnarl/s-linux__alpha.ads index 96602ca..0f01f30 100644 --- a/gcc/ada/libgnarl/s-linux__alpha.ads +++ b/gcc/ada/libgnarl/s-linux__alpha.ads @@ -87,6 +87,7 @@ package System.Linux is SIGKILL : constant := 9; -- kill (cannot be caught or ignored) SIGBUS : constant := 10; -- bus error SIGSEGV : constant := 11; -- segmentation violation + SIGSYS : constant := 12; -- bad system call SIGPIPE : constant := 13; -- write on a pipe with no one to read it SIGALRM : constant := 14; -- alarm clock SIGTERM : constant := 15; -- software termination signal from kill |