1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . T A S K I N G . A S Y N C _ D E L A Y S --
9 -- Copyright (C) 1998-2009, Free Software Foundation, Inc. --
11 -- GNARL 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 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
30 ------------------------------------------------------------------------------
33 -- Turn off polling, we do not want ATC polling to take place during
34 -- tasking operations. It causes infinite loops and other problems.
36 with Ada
.Unchecked_Conversion
;
37 with Ada
.Task_Identification
;
39 with System
.Task_Primitives
.Operations
;
40 with System
.Tasking
.Utilities
;
41 with System
.Tasking
.Initialization
;
42 with System
.Tasking
.Debug
;
43 with System
.OS_Primitives
;
44 with System
.Interrupt_Management
.Operations
;
45 with System
.Parameters
;
46 with System
.Traces
.Tasking
;
48 package body System
.Tasking
.Async_Delays
is
50 package STPO
renames System
.Task_Primitives
.Operations
;
51 package ST
renames System
.Tasking
;
52 package STU
renames System
.Tasking
.Utilities
;
53 package STI
renames System
.Tasking
.Initialization
;
54 package OSP
renames System
.OS_Primitives
;
58 use System
.Traces
.Tasking
;
60 function To_System
is new Ada
.Unchecked_Conversion
61 (Ada
.Task_Identification
.Task_Id
, Task_Id
);
63 Timer_Server_ID
: ST
.Task_Id
;
65 Timer_Attention
: Boolean := False;
66 pragma Atomic
(Timer_Attention
);
69 pragma Interrupt_Priority
(System
.Any_Priority
'Last);
72 -- The timer queue is a circular doubly linked list, ordered by absolute
73 -- wakeup time. The first item in the queue is Timer_Queue.Succ.
74 -- It is given a Resume_Time that is larger than any legitimate wakeup
75 -- time, so that the ordered insertion will always stop searching when it
76 -- gets back to the queue header block.
78 Timer_Queue
: aliased Delay_Block
;
80 ------------------------
81 -- Cancel_Async_Delay --
82 ------------------------
84 -- This should (only) be called from the compiler-generated cleanup routine
85 -- for an async. select statement with delay statement as trigger. The
86 -- effect should be to remove the delay from the timer queue, and exit one
88 -- The usage and logic are similar to Cancel_Protected_Entry_Call, but
89 -- simplified because this is not a true entry call.
91 procedure Cancel_Async_Delay
(D
: Delay_Block_Access
) is
92 Dpred
: Delay_Block_Access
;
93 Dsucc
: Delay_Block_Access
;
96 -- Note that we mark the delay as being cancelled
97 -- using a level value that is reserved.
99 -- make this operation idempotent
101 if D
.Level
= ATC_Level_Infinity
then
105 D
.Level
:= ATC_Level_Infinity
;
107 -- remove self from timer queue
109 STI
.Defer_Abort_Nestable
(D
.Self_Id
);
115 STPO
.Write_Lock
(Timer_Server_ID
);
122 STPO
.Unlock
(Timer_Server_ID
);
124 -- Note that the above deletion code is required to be
125 -- idempotent, since the block may have been dequeued
126 -- previously by the Timer_Server.
128 -- leave the asynchronous select
130 STPO
.Write_Lock
(D
.Self_Id
);
131 STU
.Exit_One_ATC_Level
(D
.Self_Id
);
132 STPO
.Unlock
(D
.Self_Id
);
138 STI
.Undefer_Abort_Nestable
(D
.Self_Id
);
139 end Cancel_Async_Delay
;
141 ---------------------------
142 -- Enqueue_Time_Duration --
143 ---------------------------
145 function Enqueue_Duration
147 D
: Delay_Block_Access
) return Boolean
156 -- The corresponding call to Undefer_Abort is performed by the
157 -- expanded code (see exp_ch9).
159 STI
.Defer_Abort
(STPO
.Self
);
161 (STPO
.Monotonic_Clock
162 + Duration'Min (T
, OSP
.Max_Sensible_Delay
), D
);
165 end Enqueue_Duration
;
171 -- Allocate a queue element for the wakeup time T and put it in the
172 -- queue in wakeup time order. Assume we are on an asynchronous
173 -- select statement with delay trigger. Put the calling task to
174 -- sleep until either the delay expires or is cancelled.
176 -- We use one entry call record for this delay, since we have
177 -- to increment the ATC nesting level, but since it is not a
178 -- real entry call we do not need to use any of the fields of
179 -- the call record. The following code implements a subset of
180 -- the actions for the asynchronous case of Protected_Entry_Call,
181 -- much simplified since we know this never blocks, and does not
182 -- have the full semantics of a protected entry call.
184 procedure Time_Enqueue
186 D
: Delay_Block_Access
)
188 Self_Id
: constant Task_Id
:= STPO
.Self
;
189 Q
: Delay_Block_Access
;
192 -- for visibility of operator "="
195 pragma Debug
(Debug
.Trace
(Self_Id
, "Async_Delay", 'P'));
196 pragma Assert
(Self_Id
.Deferral_Level
= 1,
197 "async delay from within abort-deferred region");
199 if Self_Id
.ATC_Nesting_Level
= ATC_Level
'Last then
200 raise Storage_Error
with "not enough ATC nesting levels";
203 Self_Id
.ATC_Nesting_Level
:= Self_Id
.ATC_Nesting_Level
+ 1;
206 (Debug
.Trace
(Self_Id
, "ASD: entered ATC level: " &
207 ATC_Level
'Image (Self_Id
.ATC_Nesting_Level
), 'A'));
209 D
.Level
:= Self_Id
.ATC_Nesting_Level
;
210 D
.Self_Id
:= Self_Id
;
217 STPO
.Write_Lock
(Timer_Server_ID
);
219 -- Previously, there was code here to dynamically create
220 -- the Timer_Server task, if one did not already exist.
221 -- That code had a timing window that could allow multiple
222 -- timer servers to be created. Luckily, the need for
223 -- postponing creation of the timer server should now be
224 -- gone, since this package will only be linked in if
225 -- there are calls to enqueue calls on the timer server.
227 -- Insert D in the timer queue, at the position determined
228 -- by the wakeup time T.
230 Q
:= Timer_Queue
.Succ
;
232 while Q
.Resume_Time
< T
loop
236 -- Q is the block that has Resume_Time equal to or greater than
237 -- T. After the insertion we want Q to be the successor of D.
244 -- If the new element became the head of the queue,
245 -- signal the Timer_Server to wake up.
247 if Timer_Queue
.Succ
= D
then
248 Timer_Attention
:= True;
249 STPO
.Wakeup
(Timer_Server_ID
, ST
.Timer_Server_Sleep
);
252 STPO
.Unlock
(Timer_Server_ID
);
263 function Timed_Out
(D
: Delay_Block_Access
) return Boolean is
272 task body Timer_Server
is
273 function Get_Next_Wakeup_Time
return Duration;
274 -- Used to initialize Next_Wakeup_Time, but also to ensure that
275 -- Make_Independent is called during the elaboration of this task.
277 --------------------------
278 -- Get_Next_Wakeup_Time --
279 --------------------------
281 function Get_Next_Wakeup_Time
return Duration is
283 STU
.Make_Independent
;
284 return Duration'Last;
285 end Get_Next_Wakeup_Time
;
287 -- Local Declarations
289 Next_Wakeup_Time
: Duration := Get_Next_Wakeup_Time
;
293 Dequeued
: Delay_Block_Access
;
294 Dequeued_Task
: Task_Id
;
296 pragma Unreferenced
(Timedout
, Yielded
);
299 Timer_Server_ID
:= STPO
.Self
;
301 -- Since this package may be elaborated before System.Interrupt,
302 -- we need to call Setup_Interrupt_Mask explicitly to ensure that
303 -- this task has the proper signal mask.
305 Interrupt_Management
.Operations
.Setup_Interrupt_Mask
;
307 -- Initialize the timer queue to empty, and make the wakeup time of the
308 -- header node be larger than any real wakeup time we will ever use.
311 STI
.Defer_Abort
(Timer_Server_ID
);
317 STPO
.Write_Lock
(Timer_Server_ID
);
319 -- The timer server needs to catch pending aborts after finalization
320 -- of library packages. If it doesn't poll for it, the server will
323 if not Timer_Attention
then
324 Timer_Server_ID
.Common
.State
:= ST
.Timer_Server_Sleep
;
326 if Next_Wakeup_Time
= Duration'Last then
327 Timer_Server_ID
.User_State
:= 1;
329 STPO
.Monotonic_Clock
+ OSP
.Max_Sensible_Delay
;
332 Timer_Server_ID
.User_State
:= 2;
336 (Timer_Server_ID
, Next_Wakeup_Time
,
337 OSP
.Absolute_RT
, ST
.Timer_Server_Sleep
,
339 Timer_Server_ID
.Common
.State
:= ST
.Runnable
;
342 -- Service all of the wakeup requests on the queue whose times have
343 -- been reached, and update Next_Wakeup_Time to next wakeup time
344 -- after that (the wakeup time of the head of the queue if any, else
345 -- a time far in the future).
347 Timer_Server_ID
.User_State
:= 3;
348 Timer_Attention
:= False;
350 Now
:= STPO
.Monotonic_Clock
;
351 while Timer_Queue
.Succ
.Resume_Time
<= Now
loop
353 -- Dequeue the waiting task from the front of the queue
355 pragma Debug
(System
.Tasking
.Debug
.Trace
356 (Timer_Server_ID
, "Timer service: waking up waiting task", 'E'));
358 Dequeued
:= Timer_Queue
.Succ
;
359 Timer_Queue
.Succ
:= Dequeued
.Succ
;
360 Dequeued
.Succ
.Pred
:= Dequeued
.Pred
;
361 Dequeued
.Succ
:= Dequeued
;
362 Dequeued
.Pred
:= Dequeued
;
364 -- We want to abort the queued task to the level of the async.
365 -- select statement with the delay. To do that, we need to lock
366 -- the ATCB of that task, but to avoid deadlock we need to release
367 -- the lock of the Timer_Server. This leaves a window in which
368 -- another task might perform an enqueue or dequeue operation on
369 -- the timer queue, but that is OK because we always restart the
370 -- next iteration at the head of the queue.
372 if Parameters
.Runtime_Traces
then
373 Send_Trace_Info
(E_Kill
, Dequeued
.Self_Id
);
376 STPO
.Unlock
(Timer_Server_ID
);
377 STPO
.Write_Lock
(Dequeued
.Self_Id
);
378 Dequeued_Task
:= Dequeued
.Self_Id
;
379 Dequeued
.Timed_Out
:= True;
380 STI
.Locked_Abort_To_Level
381 (Timer_Server_ID
, Dequeued_Task
, Dequeued
.Level
- 1);
382 STPO
.Unlock
(Dequeued_Task
);
383 STPO
.Write_Lock
(Timer_Server_ID
);
386 Next_Wakeup_Time
:= Timer_Queue
.Succ
.Resume_Time
;
388 -- Service returns the Next_Wakeup_Time.
389 -- The Next_Wakeup_Time is either an infinity (no delay request)
390 -- or the wakeup time of the queue head. This value is used for
391 -- an actual delay in this server.
393 STPO
.Unlock
(Timer_Server_ID
);
399 STI
.Undefer_Abort
(Timer_Server_ID
);
403 ------------------------------
404 -- Package Body Elaboration --
405 ------------------------------
408 Timer_Queue
.Succ
:= Timer_Queue
'Access;
409 Timer_Queue
.Pred
:= Timer_Queue
'Access;
410 Timer_Queue
.Resume_Time
:= Duration'Last;
411 Timer_Server_ID
:= To_System
(Timer_Server
'Identity);
412 end System
.Tasking
.Async_Delays
;