Ada Conformity Assessment Authority      Home Conformity Assessment   Test Suite ARGAda Standard
 
Ada Reference Manual (Ada 2022)Legal Information
Contents   Index   References   Search   Previous   Next 

D.1 Task Priorities

1/3
This subclause specifies the priority model for real-time systems. In addition, the methods for specifying priorities are defined.
Paragraphs 2 through 6 were moved to Annex J, “Obsolescent Features”. 

Static Semantics

6.1/3
 For a task type (including the anonymous type of a single_task_declaration), protected type (including the anonymous type of a single_protected_declaration), or subprogram, the following language-defined representation aspects may be specified:
6.2/3
 Priority
The aspect Priority is an expression, which shall be of type Integer.
6.3/3
 Interrupt_Priority

The aspect Interrupt_Priority is an expression, which shall be of type Integer.

Legality Rules

7/3
This paragraph was deleted.
8/3
If the Priority aspect is specified for a subprogram, the expression shall be static, and its value shall be in the range of System.Priority.
8.1/3
 At most one of the Priority and Interrupt_Priority aspects may be specified for a given entity.
8.2/3
 Neither of the Priority or Interrupt_Priority aspects shall be specified for a synchronized interface type.

Static Semantics

9
The following declarations exist in package System: 
10
subtype Any_Priority is Integer range implementation-defined;
subtype Priority is Any_Priority
   range Any_Priority'First .. implementation-defined;
subtype Interrupt_Priority is Any_Priority
   range Priority'Last+1 .. Any_Priority'Last;
11
Default_Priority : constant Priority := (Priority'First + Priority'Last)/2;
12
The full range of priority values supported by an implementation is specified by the subtype Any_Priority. The subrange of priority values that are high enough to require the blocking of one or more interrupts is specified by the subtype Interrupt_Priority. The subrange of priority values below System.Interrupt_Priority'First is specified by the subtype System.Priority.
13/3
This paragraph was deleted.

Dynamic Semantics

14/3
The Priority aspect has no effect if it is specified for a subprogram other than the main subprogram; the Priority value is not associated with any task.
15/5
A task priority is an integer value that indicates a degree of urgency and is the basis for resolving competing demands of tasks for resources. Unless otherwise specified, whenever tasks compete for processors or other implementation-defined resources, the resources are allocated to the task with the highest priority value. The base priority of a task is the priority with which it was created, or to which it was later set by Dynamic_Priorities.Set_Priority (see D.5). At all times, a task also has an active priority, which generally is its base priority unless it inherits a priority from other sources. Priority inheritance is the process by which the priority of a task or other entity (for example, a protected object; see D.3) is used in the evaluation of another task's active priority. 
16/3
The effect of specifying a Priority or Interrupt_Priority aspect for a protected type or single_protected_declaration is discussed in D.3.
17/4
The expression specified for the Priority or Interrupt_Priority aspect of a task type is evaluated each time an object of the task type is created (see 9.1). For the Priority aspect, the value of the expression is converted to the subtype Priority; for the Interrupt_Priority aspect, this value is converted to the subtype Any_Priority. The priority value is then associated with the task object.
18/3
Likewise, the priority value is associated with the environment task if the aspect is specified for the main subprogram.
19/3
The initial value of a task's base priority is specified by default or by means of a Priority or Interrupt_Priority aspect. After a task is created, its base priority can be changed only by a call to Dynamic_Priorities.Set_Priority (see D.5). The initial base priority of a task in the absence of an aspect is the base priority of the task that creates it at the time of creation (see 9.1). If the aspect Priority is not specified for the main subprogram, the initial base priority of the environment task is System.Default_Priority. The task's active priority is used when the task competes for processors. Similarly, the task's active priority is used to determine the task's position in any queue when Priority_Queuing is specified (see D.4).
20/2
At any time, the active priority of a task is the maximum of all the priorities the task is inheriting at that instant. For a task that is not held (see D.11), its base priority is a source of priority inheritance unless otherwise specified for a particular task dispatching policy. Other sources of priority inheritance are specified under the following conditions: 
21/1
During activation, a task being activated inherits the active priority that its activator (see 9.2) had at the time the activation was initiated.
22/1
During rendezvous, the task accepting the entry call inherits the priority of the entry call (see 9.5.3 and D.4).
22.1/5
While starting a protected action on a protected object when the FIFO_Spinning admission policy is in effect, a task inherits the ceiling priority of the protected object (see 9.5, D.3, and D.4.1).
23/5
While a task executes a protected action on a protected object, the task inherits the ceiling priority of the protected object (see 9.5 and D.3).
24
In all of these cases, the priority ceases to be inherited as soon as the condition calling for the inheritance no longer exists.

Implementation Requirements

25
The range of System.Interrupt_Priority shall include at least one value.
26
The range of System.Priority shall include at least 30 values.
27
NOTE 1   The priority expression can include references to discriminants of the enclosing type.
28
NOTE 2   It is a consequence of the active priority rules that at the point when a task stops inheriting a priority from another source, its active priority is re-evaluated. This is in addition to other instances described in this Annex for such re-evaluation.
29/5
NOTE 3   An implementation can provide a nonstandard mode in which tasks inherit priorities under conditions other than those specified above. 

Contents   Index   References   Search   Previous   Next 
Ada-Europe Ada 2005 and 2012 Editions sponsored in part by Ada-Europe