diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2008-06-20 05:06:24 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2008-06-20 05:06:24 +0000 |
commit | 2d31e498bf5baf0ad8f3cc1dcea8a1f8a042b2cb (patch) | |
tree | b36f7e1a0bf44d215a189f3e54d96ec538e479e5 | |
parent | e1e4cdc42c8b28235ab637dc5df2b4ef159c5b98 (diff) | |
download | gcc-2d31e498bf5baf0ad8f3cc1dcea8a1f8a042b2cb.zip gcc-2d31e498bf5baf0ad8f3cc1dcea8a1f8a042b2cb.tar.gz gcc-2d31e498bf5baf0ad8f3cc1dcea8a1f8a042b2cb.tar.bz2 |
re PR ada/36573 (s-intman.adb:232:50: "SA_ONSTACK" is undefined)
PR ada/36573
* s-osinte-hpux-dce.ads (SA_ONSTACK): Define.
From-SVN: r136981
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/s-osinte-hpux-dce.ads | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 9282491..74728b2 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2008-06-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR ada/36573 + * s-osinte-hpux-dce.ads (SA_ONSTACK): Define. + 2008-06-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * gnat_rm.texi (Implementation Defined Characteristics) diff --git a/gcc/ada/s-osinte-hpux-dce.ads b/gcc/ada/s-osinte-hpux-dce.ads index 687f9ec..d296cfe 100644 --- a/gcc/ada/s-osinte-hpux-dce.ads +++ b/gcc/ada/s-osinte-hpux-dce.ads @@ -168,6 +168,7 @@ package System.OS_Interface is SA_RESTART : constant := 16#40#; SA_SIGINFO : constant := 16#10#; + SA_ONSTACK : constant := 16#01#; SIG_BLOCK : constant := 0; SIG_UNBLOCK : constant := 1; |