diff options
author | joel <joel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-29 17:43:57 +0000 |
---|---|---|
committer | joel <joel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-29 17:43:57 +0000 |
commit | a34263a1f6120610420fd89fc967cde7f38009bb (patch) | |
tree | 023559e3762c5cba547806f0f5a3f5dc0cc36717 /gcc/ada/5rosinte.ads | |
parent | fa163406aef12ccc2599e6ebda6330d26731c035 (diff) | |
download | gcc-a34263a1f6120610420fd89fc967cde7f38009bb.tar.gz |
2003-01-29 Joel Sherrill <joel@OARcorp.com>
* 5rosinte.ads: Add SIGXCPU.
* 5rtpopsp.adb: New file.
* Make-lang.in: Do not build gnatpsta and gnatpsys when cross.
* Makefile.in: Recognize more RTEMS targets and add the RTEMS
specific file 5rtpopsp.adb.
* adaint.h: Add include of <stdio.h> when target is RTEMS. This
is likely needed for all newlib targets.
* init.c: Add RTEMS specific version of __gnat_initialize().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62098 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/5rosinte.ads')
-rw-r--r-- | gcc/ada/5rosinte.ads | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/5rosinte.ads b/gcc/ada/5rosinte.ads index e15c01e82d4..649499aae1b 100644 --- a/gcc/ada/5rosinte.ads +++ b/gcc/ada/5rosinte.ads @@ -7,7 +7,7 @@ -- S p e c -- -- -- -- -- --- Copyright (C) 1997-2001 Free Software Foundation, Inc. -- +-- Copyright (C) 1997-2003 Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -106,6 +106,7 @@ package System.OS_Interface is SIGTERM : constant := 15; -- software termination signal from kill SIGUSR1 : constant := 16; -- user defined signal 1 SIGUSR2 : constant := 17; -- user defined signal 2 + SIGXCPU : constant := 0; -- XCPU SIGADAABORT : constant := SIGABRT; |