OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-moreex.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --            G N A T . M O S T _ R E C E N T _ E X C E P T I O N           --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                                                                          --
10 --              Copyright (C) 2000 Ada Core Technologies, Inc.              --
11 --                                                                          --
12 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- As a special exception,  if other files  instantiate  generics from this --
24 -- unit, or you link  this unit with other files  to produce an executable, --
25 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
26 -- covered  by the  GNU  General  Public  License.  This exception does not --
27 -- however invalidate  any other reasons why  the executable file  might be --
28 -- covered by the  GNU Public License.                                      --
29 --                                                                          --
30 -- GNAT was originally developed  by the GNAT team at  New York University. --
31 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
32 --                                                                          --
33 ------------------------------------------------------------------------------
34
35 --  This package provides routines for accessing the most recently raised
36 --  exception. This may be useful for certain logging activities. It may
37 --  also be useful for mimicing implementation dependent capabilities in
38 --  Ada 83 compilers, but see also GNAT.Current_Exceptions for this usage.
39
40 with Ada.Exceptions;
41 package GNAT.Most_Recent_Exception is
42
43    -----------------
44    -- Subprograms --
45    -----------------
46
47    function Occurrence
48      return Ada.Exceptions.Exception_Occurrence;
49    --  Returns the Exception_Occurrence for the most recently raised
50    --  exception in the current task. If no exception has been raised
51    --  in the current task prior to the call, returns Null_Occurrence.
52
53    function Occurrence_Access
54      return Ada.Exceptions.Exception_Occurrence_Access;
55    --  Similar to the above, but returns an access to the occurrence value.
56    --  This value is in a task specific location, and may be validly accessed
57    --  as long as no further exception is raised in the calling task.
58
59    --  Note: unlike the routines in GNAT.Current_Exception, these functions
60    --  access the most recently raised exception, regardless of where they
61    --  are called. Consider the following example:
62
63    --     exception
64    --        when Constraint_Error =>
65    --          begin
66    --             ...
67    --          exception
68    --             when Tasking_Error => ...
69    --          end;
70    --
71    --          --  Assuming a Tasking_Error was raised in the inner block,
72    --          --  a call to GNAT.Most_Recent_Exception.Occurrence will
73    --          --  return information about this Tasking_Error exception,
74    --          --  not about the Constraint_Error exception being handled
75    --          --  by the current handler code.
76
77
78 end GNAT.Most_Recent_Exception;