annotate gcc/ada/libgnarl/a-stcoed.ads @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ------------------------------------------------------------------------------
kono
parents:
diff changeset
2 -- --
kono
parents:
diff changeset
3 -- GNAT RUN-TIME COMPONENTS --
kono
parents:
diff changeset
4 -- --
kono
parents:
diff changeset
5 -- A D A . S Y N C H R O N O U S _ T A S K _ C O N T R O L . E D F --
kono
parents:
diff changeset
6 -- --
kono
parents:
diff changeset
7 -- S p e c --
kono
parents:
diff changeset
8 -- --
kono
parents:
diff changeset
9 -- This specification is derived from the Ada Reference Manual for use with --
kono
parents:
diff changeset
10 -- GNAT. In accordance with the copyright of that document, you can freely --
kono
parents:
diff changeset
11 -- copy and modify this specification, provided that if you redistribute a --
kono
parents:
diff changeset
12 -- modified version, any changes that you have made are clearly indicated. --
kono
parents:
diff changeset
13 -- --
kono
parents:
diff changeset
14 ------------------------------------------------------------------------------
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 -- This unit is not implemented in typical GNAT implementations that lie on
kono
parents:
diff changeset
17 -- top of operating systems, because it is infeasible to implement in such
kono
parents:
diff changeset
18 -- environments.
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 -- If a target environment provides appropriate support for this package,
kono
parents:
diff changeset
21 -- then the Unimplemented_Unit pragma should be removed from this spec and
kono
parents:
diff changeset
22 -- an appropriate body provided.
kono
parents:
diff changeset
23
kono
parents:
diff changeset
24 package Ada.Synchronous_Task_Control.EDF is
kono
parents:
diff changeset
25
kono
parents:
diff changeset
26 pragma Unimplemented_Unit;
kono
parents:
diff changeset
27
kono
parents:
diff changeset
28 procedure Suspend_Until_True_And_Set_Deadline
kono
parents:
diff changeset
29 (S : in out Suspension_Object;
kono
parents:
diff changeset
30 TS : Ada.Real_Time.Time_Span);
kono
parents:
diff changeset
31 end Ada.Synchronous_Task_Control.EDF;