Contents Index Search Related Documents Previous Next
D.14.1 Execution Time Timers
1/2
This clause describes a language-defined package
that provides a facility for calling a handler when a task has used a
defined amount of CPU time.
Static Semantics
2/2
The following
language-defined library exists:
3/2
with System;
package Ada.Execution_Time.Timers is
4/2
type Timer (T : access Ada.Task_Identification.Task_Id) is
tagged limited private;
5/2
type Timer_Handler is
access protected procedure (TM : in out Timer);
6/2
Min_Handler_Ceiling : constant System.Any_Priority :=
implementation-defined;
7/2
procedure Set_Handler (TM : in out Timer;
In_Time : in Time_Span;
Handler : in Timer_Handler);
procedure Set_Handler (TM : in out Timer;
At_Time : in CPU_Time;
Handler : in Timer_Handler);
function Current_Handler (TM : Timer) return Timer_Handler;
procedure Cancel_Handler (TM : in out Timer;
Cancelled : in out Boolean);
8/2
function Time_Remaining (TM : Timer) return Time_Span;
9/2
Timer_Resource_Error : exception;
10/2
private
... -- not specified by the language
end Ada.Execution_Time.Timers;
11/2
The type Timer represents an execution-time
event for a single task and is capable of detecting execution time overruns.
The access discriminant T identifies the task concerned. The type Timer
needs finalization (see
7.6).
12/2
An object of type Timer is said to be
set
if it is associated with a non-null value of type Timer_Handler and
cleared
otherwise. All Timer objects are initially cleared.
13/2
The type Timer_Handler identifies a protected
procedure to be executed by the implementation when the timer expires.
Such a protected procedure is called a
handler.
Dynamic Semantics
14/2
When a Timer object is created, or upon the
first call of a Set_Handler procedure with the timer as parameter, the
resources required to operate an execution-time timer based on the associated
execution-time clock are allocated and initialized. If this operation
would exceed the available resources, Timer_Resource_Error is raised.
15/2
The procedures Set_Handler associate the handler
Handler with the timer TM; if Handler is
null, the timer is cleared,
otherwise it is set. The first procedure Set_Handler loads the timer
TM with an interval specified by the Time_Span parameter. In this mode,
when the execution time of the task identified by TM.T has increased
by In_Time, the timer TM is said to have expired. The second procedure
Set_Handler loads the timer TM with the absolute value specified by At_Time.
In this mode, when the execution time of the task identified by TM.T
reaches At_Time, the timer TM is said to have
expired; if the
value of At_Time has already been reached when Set_Handler is called,
the timer TM is said to be expired.
16/2
A call of a procedure Set_Handler for a timer
that is already set replaces the handler and the (absolute or relative)
execution time; if Handler is not null, the timer remains set.
17/2
When a timer expires, the associated handler
is executed, passing the timer as parameter. The initial action of the
execution of the handler is to clear the event.
18/2
The function Current_Handler returns the handler
associated with the timer TM if that timer is set; otherwise it returns
null.
19/2
The procedure Cancel_Handler clears the timer
if it is set. Cancelled is assigned True if the timer was set prior to
it being cleared; otherwise it is assigned False.
20/2
The function Time_Remaining returns the execution
time interval that remains until the timer TM would expire, if that timer
is set; otherwise it returns Time_Span_Zero.
21/2
The constant Min_Handler_Ceiling is the priority
value that ensures that no ceiling violation would occur, were a handler
to be executed.
22/2
For all the subprograms defined in this package,
Tasking_Error is raised if the task identified by TM.T has terminated,
and Program_Error is raised if the value of TM.T is Task_Identification.Null_Task_Id.
23/2
An exception propagated from a handler invoked
as part of the expiration of a timer has no effect.
Erroneous Execution
24/2
For a call of any of the
subprograms defined in this package, if the task identified by TM.T no
longer exists, the execution of the program is erroneous.
Implementation Requirements
25/2
For a given Timer object, the implementation
shall perform the operations declared in this package atomically with
respect to any of these operations on the same Timer object. The replacement
of a handler by a call of Set_Handler shall be performed atomically with
respect to the execution of the handler.
26/2
When an object of type Timer is finalized,
the system resources used by the timer shall be deallocated.
Implementation Permissions
27/2
Implementations may limit the number of timers
that can be defined for each task. If this limit is exceeded then Timer_Resource_Error
is raised.
28/2
46 A Timer_Handler can
be associated with several Timer objects.
Contents Index Search Related Documents Previous Next Legal