diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-15 15:51:53 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-15 15:51:53 +0000 |
commit | 57b5da613404a43f2a614b15f24ce6cfb365d601 (patch) | |
tree | 32a64f782637f8109a200f94d059f7dbccee6682 /gcc/ada/a-reatim.ads | |
parent | d873da29f46ee2f4a7156c79cbbf775be880d4bf (diff) | |
download | gcc-57b5da613404a43f2a614b15f24ce6cfb365d601.tar.gz |
2005-03-08 Robert Dewar <dewar@adacore.com>
* a-reatim.ads, a-reatim.adb: Add functions Minutes and Seconds for
AI-386.
* a-retide.ads: Minor comment changes
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96486 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-reatim.ads')
-rw-r--r-- | gcc/ada/a-reatim.ads | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gcc/ada/a-reatim.ads b/gcc/ada/a-reatim.ads index ae5249f457c..c8f9750e8c6 100644 --- a/gcc/ada/a-reatim.ads +++ b/gcc/ada/a-reatim.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2002 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2005 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -86,6 +86,12 @@ package Ada.Real_Time is function Microseconds (US : Integer) return Time_Span; function Milliseconds (MS : Integer) return Time_Span; + function Seconds (S : Integer) return Time_Span; + pragma Ada_05 (Seconds); + + function Minutes (M : Integer) return Time_Span; + pragma Ada_05 (Minutes); + -- Seconds_Count needs 64 bits, since Time has the full range of -- Duration. The delta of Duration is 10 ** (-9), so the maximum -- number of seconds is 2**63/10**9 = 8*10**9 which does not quite @@ -126,4 +132,10 @@ private pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, "abs"); + pragma Inline (Microseconds); + pragma Inline (Milliseconds); + pragma Inline (Nanoseconds); + pragma Inline (Seconds); + pragma Inline (Minutes); + end Ada.Real_Time; |