summaryrefslogtreecommitdiff
path: root/gcc/ada/init.c
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2009-06-24 12:11:52 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2009-06-24 12:11:52 +0200
commite1f3cb584d01e98206cea8feeb094ca025534ff7 (patch)
tree93566d15728270f04bb11663b8d930f136b389a4 /gcc/ada/init.c
parentc928785785d29202b33a7738adecff9a09c93738 (diff)
downloadgcc-e1f3cb584d01e98206cea8feeb094ca025534ff7.tar.gz
[multiple changes]
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. From-SVN: r148905
Diffstat (limited to 'gcc/ada/init.c')
-rw-r--r--gcc/ada/init.c2
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,