1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . E X E C U T I O N _ T I M E --
9 -- Copyright (C) 2009-2015, Free Software Foundation, Inc. --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 3, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception, --
24 -- version 3.1, as published by the Free Software Foundation. --
26 -- You should have received a copy of the GNU General Public License and --
27 -- a copy of the GCC Runtime Library Exception along with this program; --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
29 -- <http://www.gnu.org/licenses/>. --
31 -- GNAT was originally developed by the GNAT team at New York University. --
32 -- Extensive contributions were provided by Ada Core Technologies Inc. --
34 ------------------------------------------------------------------------------
36 -- This is the Windows native version of this package
38 with Ada
.Task_Identification
;
41 package Ada
.Execution_Time
with
44 type CPU_Time
is private;
46 CPU_Time_First
: constant CPU_Time
;
47 CPU_Time_Last
: constant CPU_Time
;
48 CPU_Time_Unit
: constant := 0.000001;
49 CPU_Tick
: constant Ada
.Real_Time
.Time_Span
;
51 use type Ada
.Task_Identification
.Task_Id
;
54 (T
: Ada
.Task_Identification
.Task_Id
:=
55 Ada
.Task_Identification
.Current_Task
)
59 Global
=> Ada
.Real_Time
.Clock_Time
,
60 Pre
=> T
/= Ada
.Task_Identification
.Null_Task_Id
;
64 Right
: Ada
.Real_Time
.Time_Span
) return CPU_Time
69 (Left
: Ada
.Real_Time
.Time_Span
;
70 Right
: CPU_Time
) return CPU_Time
76 Right
: Ada
.Real_Time
.Time_Span
) return CPU_Time
82 Right
: CPU_Time
) return Ada
.Real_Time
.Time_Span
;
84 function "<" (Left
, Right
: CPU_Time
) return Boolean with
86 function "<=" (Left
, Right
: CPU_Time
) return Boolean with
88 function ">" (Left
, Right
: CPU_Time
) return Boolean with
90 function ">=" (Left
, Right
: CPU_Time
) return Boolean with
95 SC
: out Ada
.Real_Time
.Seconds_Count
;
96 TS
: out Ada
.Real_Time
.Time_Span
)
101 (SC
: Ada
.Real_Time
.Seconds_Count
;
102 TS
: Ada
.Real_Time
.Time_Span
:= Ada
.Real_Time
.Time_Span_Zero
)
107 Interrupt_Clocks_Supported
: constant Boolean := False;
108 Separate_Interrupt_Clocks_Supported
: constant Boolean := False;
110 pragma Warnings
(Off
, "check will fail at run time");
111 function Clock_For_Interrupts
return CPU_Time
with
113 Global
=> Ada
.Real_Time
.Clock_Time
,
114 Pre
=> Interrupt_Clocks_Supported
;
115 pragma Warnings
(On
, "check will fail at run time");
118 pragma SPARK_Mode
(Off
);
120 type CPU_Time
is new Ada
.Real_Time
.Time
;
122 CPU_Time_First
: constant CPU_Time
:= CPU_Time
(Ada
.Real_Time
.Time_First
);
123 CPU_Time_Last
: constant CPU_Time
:= CPU_Time
(Ada
.Real_Time
.Time_Last
);
125 CPU_Tick
: constant Ada
.Real_Time
.Time_Span
:= Ada
.Real_Time
.Tick
;
127 pragma Import
(Intrinsic
, "<");
128 pragma Import
(Intrinsic
, "<=");
129 pragma Import
(Intrinsic
, ">");
130 pragma Import
(Intrinsic
, ">=");
132 end Ada
.Execution_Time
;