diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-24 10:11:52 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-24 10:11:52 +0000 |
commit | 55bf42adac53aa1c9e33b8170c67430c9cdff4e0 (patch) | |
tree | 93566d15728270f04bb11663b8d930f136b389a4 /gcc/ada/init.c | |
parent | 487efa8a5b4fc87b5dd5f6cbb350de7989cdeb5b (diff) | |
download | gcc-55bf42adac53aa1c9e33b8170c67430c9cdff4e0.tar.gz |
2009-06-24 Robert Dewar <dewar@adacore.com>
* prj-nmsc.adb, prj-nmsc.ads, prj-proc.adb, prj.adb: Minor reformatting
* a-strsea.adb (Count): Avoid local copy on stack, speed up unmapped
case.
(Index): Ditto.
2009-06-24 Ed Schonberg <schonberg@adacore.com>
* sem_ch4.adb (Analyze_One_Call): Check that at least one actual is
present when checking whether a call may be interpreted as an indexing
of the result of a call.
* exp_ch9.adb (Expand_N_Subprogram_Declaration): Place the generated
body for a null procedure on the freeze actions for the procedure, so
that it will be analyzed at the proper place without premature freezing
of actuals.
* sem_ch3.adb (Check_Completion): Code cleanup.
Do not diagnose a null procedure without a body, if previous errors
have disabled expansion.
2009-06-24 Doug Rupp <rupp@adacore.com>
* init.c [VMS] Resignal C$_SIGKILL
2009-06-24 Ed Falis <falis@adacore.com>
* s-vxwext.adb, s-vxwext-kernel.adb: Add s-vxwext body for VxWorks 5
Define ERROR in body for VxWorks 6 kernel
2009-06-24 Pascal Obry <obry@adacore.com>
* g-socket.adb, g-socket.ads: Fix possible unexpected constraint error
in [Send/Receive]_Socket.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148905 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/init.c')
-rw-r--r-- | gcc/ada/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ada/init.c b/gcc/ada/init.c index 1a24b673a24..8d9b1951ea3 100644 --- a/gcc/ada/init.c +++ b/gcc/ada/init.c @@ -1136,6 +1136,7 @@ extern char *__gnat_error_prehandler_stack; /* Alternate signal stack */ #define SS$_RESIGNAL 2328 /* These codes are in standard message libraries. */ +extern int C$_SIGKILL; extern int CMA$_EXIT_THREAD; extern int SS$_DEBUG; extern int SS$_INTDIV; @@ -1312,6 +1313,7 @@ typedef int resignal_predicate (int code); const int *cond_resignal_table [] = { + &C$_SIGKILL, &CMA$_EXIT_THREAD, &SS$_DEBUG, &LIB$_KEYNOTFOU, |