gcc:
[official-gcc.git] / gcc / ada / a-rttiev.ads
blob19274bcebf2d075d13855aa4f48cd22ba3d54590
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . R E A L _ T I M E . T I M I N G _ E V E N T S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2005-2006, Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
35 -- --
36 ------------------------------------------------------------------------------
38 with Ada.Finalization;
40 package Ada.Real_Time.Timing_Events is
42 type Timing_Event is tagged limited private;
44 type Timing_Event_Handler
45 is access protected procedure (Event : in out Timing_Event);
47 procedure Set_Handler
48 (Event : in out Timing_Event;
49 At_Time : Time;
50 Handler : Timing_Event_Handler);
52 procedure Set_Handler
53 (Event : in out Timing_Event;
54 In_Time : Time_Span;
55 Handler : Timing_Event_Handler);
57 function Current_Handler
58 (Event : Timing_Event) return Timing_Event_Handler;
60 procedure Cancel_Handler
61 (Event : in out Timing_Event;
62 Cancelled : out Boolean);
64 function Time_Of_Event (Event : Timing_Event) return Time;
66 private
68 type Timing_Event is new Ada.Finalization.Limited_Controlled with record
69 Timeout : Time := Time_First;
70 -- The time at which the user's handler should be invoked when the
71 -- event is "set" (i.e., when Handler is not null).
73 Handler : Timing_Event_Handler;
74 -- An access value designating the protected procedure to be invoked
75 -- at the Timeout time in the future. When this value is null the event
76 -- is said to be "cleared" and no timeout is processed.
77 end record;
79 overriding procedure Finalize (This : in out Timing_Event);
80 -- Finalization procedure is required to satisfy (RM D.15 (19/2)), which
81 -- says that the object must be cleared on finalization.
83 end Ada.Real_Time.Timing_Events;