PR target/9164
[official-gcc.git] / gcc / ada / s-tpobop.ads
blob86f696859519e6af295199baeda761aea5215eec
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . T A S K I N G . P R O T E C T E D _ O B J E C T S . --
6 -- O P E R A T I O N S --
7 -- --
8 -- S p e c --
9 -- --
10 -- --
11 -- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
12 -- --
13 -- GNARL is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNARL; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
23 -- --
24 -- As a special exception, if other files instantiate generics from this --
25 -- unit, or you link this unit with other files to produce an executable, --
26 -- this unit does not by itself cause the resulting executable to be --
27 -- covered by the GNU General Public License. This exception does not --
28 -- however invalidate any other reasons why the executable file might be --
29 -- covered by the GNU Public License. --
30 -- --
31 -- GNARL was developed by the GNARL team at Florida State University. --
32 -- Extensive contributions were provided by Ada Core Technologies Inc. --
33 -- --
34 ------------------------------------------------------------------------------
36 -- This package contains all the extended primitives related to
37 -- Protected_Objects with entries.
38 -- The handling of protected objects with no entries is done in
39 -- System.Tasking.Protected_Objects, the simple routines for protected
40 -- objects with entries in System.Tasking.Protected_Objects.Entries.
41 -- The split between Entries and Operations is needed to break circular
42 -- dependencies inside the run time.
44 -- Note: the compiler generates direct calls to this interface, via Rtsfind.
45 -- Any changes to this interface may require corresponding compiler changes.
47 with Ada.Exceptions;
48 -- used for Exception_Id
50 with System.Tasking.Protected_Objects.Entries;
52 package System.Tasking.Protected_Objects.Operations is
53 pragma Elaborate_Body;
55 type Communication_Block is private;
56 -- Objects of this type are passed between GNARL calls to allow RTS
57 -- information to be preserved.
59 procedure Protected_Entry_Call
60 (Object : Entries.Protection_Entries_Access;
61 E : Protected_Entry_Index;
62 Uninterpreted_Data : System.Address;
63 Mode : Call_Modes;
64 Block : out Communication_Block);
65 -- Make a protected entry call to the specified object.
66 -- Pend a protected entry call on the protected object represented
67 -- by Object. A pended call is not queued; it may be executed immediately
68 -- or queued, depending on the state of the entry barrier.
70 -- E
71 -- The index representing the entry to be called.
73 -- Uninterpreted_Data
74 -- This will be returned by Next_Entry_Call when this call is serviced.
75 -- It can be used by the compiler to pass information between the
76 -- caller and the server, in particular entry parameters.
78 -- Mode
79 -- The kind of call to be pended
81 -- Block
82 -- Information passed between runtime calls by the compiler
84 procedure Timed_Protected_Entry_Call
85 (Object : Entries.Protection_Entries_Access;
86 E : Protected_Entry_Index;
87 Uninterpreted_Data : System.Address;
88 Timeout : Duration;
89 Mode : Delay_Modes;
90 Entry_Call_Successful : out Boolean);
91 -- Same as the Protected_Entry_Call but with time-out specified.
92 -- This routines is used when we do not use ATC mechanism to implement
93 -- timed entry calls.
95 procedure Service_Entries (Object : Entries.Protection_Entries_Access);
96 pragma Inline (Service_Entries);
98 procedure PO_Service_Entries
99 (Self_ID : Task_ID;
100 Object : Entries.Protection_Entries_Access);
101 -- Service all entry queues of the specified object, executing the
102 -- corresponding bodies of any queued entry calls that are waiting
103 -- on True barriers. This is used when the state of a protected
104 -- object may have changed, in particular after the execution of
105 -- the statement sequence of a protected procedure.
106 -- Note that servicing an entry may change the value of one or more
107 -- barriers, so this routine keeps checking barriers until all of
108 -- them are closed.
110 -- This must be called with abortion deferred and with the corresponding
111 -- object locked.
113 procedure Complete_Entry_Body (Object : Entries.Protection_Entries_Access);
114 -- Called from within an entry body procedure, indicates that the
115 -- corresponding entry call has been serviced.
117 procedure Exceptional_Complete_Entry_Body
118 (Object : Entries.Protection_Entries_Access;
119 Ex : Ada.Exceptions.Exception_Id);
120 -- Perform all of the functions of Complete_Entry_Body. In addition,
121 -- report in Ex the exception whose propagation terminated the entry
122 -- body to the runtime system.
124 procedure Cancel_Protected_Entry_Call (Block : in out Communication_Block);
125 -- Attempt to cancel the most recent protected entry call. If the call is
126 -- not queued abortably, wait until it is or until it has completed.
127 -- If the call is actually cancelled, the called object will be
128 -- locked on return from this call. Get_Cancelled (Block) can be
129 -- used to determine if the cancellation took place; there
130 -- may be entries needing service in this case.
132 -- Block passes information between this and other runtime calls.
134 function Enqueued (Block : Communication_Block) return Boolean;
135 -- Returns True if the Protected_Entry_Call which returned the
136 -- specified Block object was queued; False otherwise.
138 function Cancelled (Block : Communication_Block) return Boolean;
139 -- Returns True if the Protected_Entry_Call which returned the
140 -- specified Block object was cancelled, False otherwise.
142 procedure Requeue_Protected_Entry
143 (Object : Entries.Protection_Entries_Access;
144 New_Object : Entries.Protection_Entries_Access;
145 E : Protected_Entry_Index;
146 With_Abort : Boolean);
147 -- If Object = New_Object, queue the protected entry call on Object
148 -- currently being serviced on the queue corresponding to the entry
149 -- represented by E.
151 -- If Object /= New_Object, transfer the call to New_Object.E,
152 -- executing or queuing it as appropriate.
154 -- With_Abort---True if the call is to be queued abortably, false
155 -- otherwise.
157 procedure Requeue_Task_To_Protected_Entry
158 (New_Object : Entries.Protection_Entries_Access;
159 E : Protected_Entry_Index;
160 With_Abort : Boolean);
161 -- Transfer task entry call currently being serviced to entry E
162 -- on New_Object.
164 -- With_Abort---True if the call is to be queued abortably, false
165 -- otherwise.
167 function Protected_Count
168 (Object : Entries.Protection_Entries'Class;
169 E : Protected_Entry_Index)
170 return Natural;
171 -- Return the number of entry calls to E on Object.
173 function Protected_Entry_Caller
174 (Object : Entries.Protection_Entries'Class) return Task_ID;
175 -- Return value of E'Caller, where E is the protected entry currently
176 -- being handled. This will only work if called from within an entry
177 -- body, as required by the LRM (C.7.1(14)).
179 -- For internal use only:
181 procedure PO_Do_Or_Queue
182 (Self_ID : Task_ID;
183 Object : Entries.Protection_Entries_Access;
184 Entry_Call : Entry_Call_Link;
185 With_Abort : Boolean);
186 -- This procedure either executes or queues an entry call, depending
187 -- on the status of the corresponding barrier. It assumes that abortion
188 -- is deferred and that the specified object is locked.
190 private
191 type Communication_Block is record
192 Self : Task_ID;
193 Enqueued : Boolean := True;
194 Cancelled : Boolean := False;
195 end record;
196 pragma Volatile (Communication_Block);
198 -- ?????
199 -- The Communication_Block seems to be a relic.
200 -- At the moment, the compiler seems to be generating
201 -- unnecessary conditional code based on this block.
202 -- See the code generated for async. select with task entry
203 -- call for another way of solving this.
205 end System.Tasking.Protected_Objects.Operations;