* config/arm/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Remove definition.
[official-gcc.git] / gcc / ada / g-exctra.ads
blob7ccbf652c2c347682fb57da53360764fe3cedd13
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- G N A T . E X C E P T I O N _ T R A C E S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2000-2003 Ada Core Technologies, Inc. --
10 -- --
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 2, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). --
30 -- --
31 ------------------------------------------------------------------------------
33 -- This package provides an interface allowing to control *automatic* output
34 -- to standard error upon exception occurrences (as opposed to explicit
35 -- generation of traceback information using GNAT.Traceback).
37 -- This output includes the basic information associated with the exception
38 -- (name, message) as well as a backtrace of the call chain at the point
39 -- where the exception occurred. This backtrace is only output if the call
40 -- chain information is available, depending if the binder switch dedicated
41 -- to that purpose has been used or not.
43 -- The default backtrace is in the form of absolute code locations which may
44 -- be converted to corresponding source locations using the addr2line utility
45 -- or from within GDB. Please refer to GNAT.Traceback for information about
46 -- what is necessary to be able to exploit thisg possibility.
48 -- The backtrace output can also be customized by way of a "decorator" which
49 -- may return any string output in association with a provided call chain.
51 with GNAT.Traceback; use GNAT.Traceback;
53 package GNAT.Exception_Traces is
55 -- The following defines the exact situations in which raises will
56 -- cause automatic output of trace information.
58 type Trace_Kind is
59 (Every_Raise,
60 -- Denotes the initial raise event for any exception occurrence, either
61 -- explicit or due to a specific language rule, within the context of a
62 -- task or not.
64 Unhandled_Raise
65 -- Denotes the raise events corresponding to exceptions for which there
66 -- is no user defined handler, in particular, when a task dies due to an
67 -- unhandled exception.
70 -- The following procedures can be used to activate and deactivate
71 -- traces identified by the above trace kind values.
73 procedure Trace_On (Kind : Trace_Kind);
74 -- Activate the traces denoted by Kind.
76 procedure Trace_Off;
77 -- Stop the tracing requested by the last call to Trace_On.
78 -- Has no effect if no such call has ever occurred.
80 -- The following provide the backtrace decorating facilities
82 type Traceback_Decorator is access
83 function (Traceback : Tracebacks_Array) return String;
84 -- A backtrace decorator is a function which returns the string to be
85 -- output for a call chain provided by way of a tracebacks array.
87 procedure Set_Trace_Decorator (Decorator : Traceback_Decorator);
88 -- Set the decorator to be used for future automatic outputs. Restore
89 -- the default behavior (output of raw addresses) if the provided
90 -- access value is null.
92 end GNAT.Exception_Traces;