public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/36573]  New: s-intman.adb:232:50: "SA_ONSTACK" is undefined
@ 2008-06-19  1:26 danglin at gcc dot gnu dot org
  2008-06-19  2:12 ` [Bug ada/36573] " dave at hiauly1 dot hia dot nrc dot ca
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-06-19  1:26 UTC (permalink / raw)
  To: gcc-bugs

/xxx/gnu/gcc/objdir/./gcc/xgcc -B/xxx/gnu/gcc/objdir/./gcc/
-B/opt/gnu/gcc/gcc-4
.4.0/hppa1.1-hp-hpux10.20/bin/
-B/opt/gnu/gcc/gcc-4.4.0/hppa1.1-hp-hpux10.20/lib
/ -isystem /opt/gnu/gcc/gcc-4.4.0/hppa1.1-hp-hpux10.20/include -isystem
/opt/gnu
/gcc/gcc-4.4.0/hppa1.1-hp-hpux10.20/sys-include -c -g -O2 -mdisable-indexing
-D_
X_HPUX10     -W -Wall -gnatpg  s-intman.adb -o s-intman.o
s-intman.adb:232:50: "SA_ONSTACK" is undefined

_INCLUDE_XOPEN_SOURCE_EXTENDED needs to be defined to provide this definition
in sys/signal.h.


-- 
           Summary: s-intman.adb:232:50: "SA_ONSTACK" is undefined
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: danglin at gcc dot gnu dot org
 GCC build triplet: hppa2.0w-hp-hpux11.11
  GCC host triplet: hppa1.1-hp-hpux10.20
GCC target triplet: hppa1.1-hp-hpux10.20


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36573


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug ada/36573] s-intman.adb:232:50: "SA_ONSTACK" is undefined
  2008-06-19  1:26 [Bug ada/36573] New: s-intman.adb:232:50: "SA_ONSTACK" is undefined danglin at gcc dot gnu dot org
@ 2008-06-19  2:12 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-06-19  3:37   ` Arnaud Charlet
  2008-06-19  3:38 ` charlet at adacore dot com
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2008-06-19  2:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from dave at hiauly1 dot hia dot nrc dot ca  2008-06-19 02:11 -------
Subject: Re:   New: s-intman.adb:232:50: "SA_ONSTACK" is undefined

> s-intman.adb:232:50: "SA_ONSTACK" is undefined

Looks like we need something like the following:

Index: s-osinte-hpux-dce.ads
===================================================================
--- s-osinte-hpux-dce.ads       (revision 136792)
+++ s-osinte-hpux-dce.ads       (working copy)
@@ -168,6 +168,7 @@

    SA_RESTART  : constant  := 16#40#;
    SA_SIGINFO  : constant  := 16#10#;
+   SA_ONSTACK  : constant  := 16#01#;

    SIG_BLOCK   : constant  := 0;
    SIG_UNBLOCK : constant  := 1;

Dave


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36573


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Bug ada/36573] s-intman.adb:232:50: "SA_ONSTACK" is undefined
  2008-06-19  2:12 ` [Bug ada/36573] " dave at hiauly1 dot hia dot nrc dot ca
@ 2008-06-19  3:37   ` Arnaud Charlet
  0 siblings, 0 replies; 6+ messages in thread
From: Arnaud Charlet @ 2008-06-19  3:37 UTC (permalink / raw)
  To: dave at hiauly1 dot hia dot nrc dot ca; +Cc: gcc-bugs

> > s-intman.adb:232:50: "SA_ONSTACK" is undefined
> 
> Looks like we need something like the following:

Right. Assuming 0x1 is indeed the corresponding value of the SA_ONSTACK
C macro, you can commit this change.

Arno


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug ada/36573] s-intman.adb:232:50: "SA_ONSTACK" is undefined
  2008-06-19  1:26 [Bug ada/36573] New: s-intman.adb:232:50: "SA_ONSTACK" is undefined danglin at gcc dot gnu dot org
  2008-06-19  2:12 ` [Bug ada/36573] " dave at hiauly1 dot hia dot nrc dot ca
@ 2008-06-19  3:38 ` charlet at adacore dot com
  2008-06-20  5:07 ` danglin at gcc dot gnu dot org
  2008-06-20  5:09 ` danglin at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: charlet at adacore dot com @ 2008-06-19  3:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from charlet at adacore dot com  2008-06-19 03:37 -------
Subject: Re:  s-intman.adb:232:50: "SA_ONSTACK" is undefined

> > s-intman.adb:232:50: "SA_ONSTACK" is undefined
> 
> Looks like we need something like the following:

Right. Assuming 0x1 is indeed the corresponding value of the SA_ONSTACK
C macro, you can commit this change.

Arno


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36573


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug ada/36573] s-intman.adb:232:50: "SA_ONSTACK" is undefined
  2008-06-19  1:26 [Bug ada/36573] New: s-intman.adb:232:50: "SA_ONSTACK" is undefined danglin at gcc dot gnu dot org
  2008-06-19  2:12 ` [Bug ada/36573] " dave at hiauly1 dot hia dot nrc dot ca
  2008-06-19  3:38 ` charlet at adacore dot com
@ 2008-06-20  5:07 ` danglin at gcc dot gnu dot org
  2008-06-20  5:09 ` danglin at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-06-20  5:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from danglin at gcc dot gnu dot org  2008-06-20 05:07 -------
Subject: Bug 36573

Author: danglin
Date: Fri Jun 20 05:06:24 2008
New Revision: 136981

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=136981
Log:
        PR ada/36573
        * s-osinte-hpux-dce.ads (SA_ONSTACK): Define.


Modified:
    trunk/gcc/ada/ChangeLog
    trunk/gcc/ada/s-osinte-hpux-dce.ads


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36573


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug ada/36573] s-intman.adb:232:50: "SA_ONSTACK" is undefined
  2008-06-19  1:26 [Bug ada/36573] New: s-intman.adb:232:50: "SA_ONSTACK" is undefined danglin at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-06-20  5:07 ` danglin at gcc dot gnu dot org
@ 2008-06-20  5:09 ` danglin at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-06-20  5:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from danglin at gcc dot gnu dot org  2008-06-20 05:08 -------
Fixed.


-- 

danglin at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36573


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-06-20  5:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-06-19  1:26 [Bug ada/36573] New: s-intman.adb:232:50: "SA_ONSTACK" is undefined danglin at gcc dot gnu dot org
2008-06-19  2:12 ` [Bug ada/36573] " dave at hiauly1 dot hia dot nrc dot ca
2008-06-19  3:37   ` Arnaud Charlet
2008-06-19  3:38 ` charlet at adacore dot com
2008-06-20  5:07 ` danglin at gcc dot gnu dot org
2008-06-20  5:09 ` danglin at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).