1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 1992-2018, Free Software Foundation, Inc. *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 3, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 ****************************************************************************/
32 /* Shared routines to support exception handling. __gnat_unhandled_terminate
33 is shared between all exception handling mechanisms. */
50 /* When an exception is raised for which no handler exists, the procedure
51 Ada.Exceptions.Unhandled_Exception is called, which performs the call to
52 adafinal to complete finalization, and then prints out the error messages
53 for the unhandled exception. The final step is to call this routine, which
54 performs any system dependent cleanup required. */
57 __gnat_unhandled_terminate (void)
60 /* Special termination handling for VMS */
63 /* Remove the exception vector so it won't intercept any errors
64 in the call to exit, and go into and endless loop */
66 SYS$
SETEXV (1, 0, 3, &prvhnd
);
69 /* Default termination handling */
75 __gnat_backtrace (void **array ATTRIBUTE_UNUSED
,
76 int size ATTRIBUTE_UNUSED
,
77 void *exclude_min ATTRIBUTE_UNUSED
,
78 void *exclude_max ATTRIBUTE_UNUSED
,
79 int skip_frames ATTRIBUTE_UNUSED
)
85 __gnat_eh_personality (void)
91 __gnat_rcheck_04 (void)
97 __gnat_rcheck_10 (void)
103 __gnat_rcheck_19 (void)
109 __gnat_rcheck_20 (void)
115 __gnat_rcheck_21 (void)
121 __gnat_rcheck_30 (void)
127 __gnat_rcheck_31 (void)
133 __gnat_rcheck_32 (void)