Commit f122ea71 by Robert Dewar Committed by Arnaud Charlet

a-reatim.ads, [...]: Add functions Minutes and Seconds for AI-386.

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

From-SVN: r96486
parent 0f76876e
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 1991-1994, Florida State University -- -- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2003, Ada Core Technologies -- -- Copyright (C) 1995-2005, Ada Core Technologies --
-- -- -- --
-- GNARL is free software; you can redistribute it and/or modify it under -- -- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -154,6 +154,15 @@ package body Ada.Real_Time is ...@@ -154,6 +154,15 @@ package body Ada.Real_Time is
return Time_Span_Unit * MS * 1_000_000; return Time_Span_Unit * MS * 1_000_000;
end Milliseconds; end Milliseconds;
-------------
-- Minutes --
-------------
function Minutes (M : Integer) return Time_Span is
begin
return Milliseconds (M) * Integer'(60_000);
end Minutes;
----------------- -----------------
-- Nanoseconds -- -- Nanoseconds --
----------------- -----------------
...@@ -163,6 +172,15 @@ package body Ada.Real_Time is ...@@ -163,6 +172,15 @@ package body Ada.Real_Time is
return Time_Span_Unit * NS; return Time_Span_Unit * NS;
end Nanoseconds; end Nanoseconds;
-------------
-- Seconds --
-------------
function Seconds (S : Integer) return Time_Span is
begin
return Milliseconds (S) * Integer'(1000);
end Seconds;
----------- -----------
-- Split -- -- Split --
----------- -----------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- 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 -- -- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow -- -- GNAT. The copyright notice above, and the license provisions that follow --
...@@ -86,6 +86,12 @@ package Ada.Real_Time is ...@@ -86,6 +86,12 @@ package Ada.Real_Time is
function Microseconds (US : Integer) return Time_Span; function Microseconds (US : Integer) return Time_Span;
function Milliseconds (MS : 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 -- Seconds_Count needs 64 bits, since Time has the full range of
-- Duration. The delta of Duration is 10 ** (-9), so the maximum -- 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 -- number of seconds is 2**63/10**9 = 8*10**9 which does not quite
...@@ -126,4 +132,10 @@ private ...@@ -126,4 +132,10 @@ private
pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, ">=");
pragma Import (Intrinsic, "abs"); pragma Import (Intrinsic, "abs");
pragma Inline (Microseconds);
pragma Inline (Milliseconds);
pragma Inline (Nanoseconds);
pragma Inline (Seconds);
pragma Inline (Minutes);
end Ada.Real_Time; end Ada.Real_Time;
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- S p e c --
-- -- -- --
-- Copyright (C) 1992-2003, Free Software Foundation, Inc. -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- -- -- --
-- GNARL is free software; you can redistribute it and/or modify it under -- -- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -39,11 +39,12 @@ ...@@ -39,11 +39,12 @@
package Ada.Real_Time.Delays is package Ada.Real_Time.Delays is
function To_Duration (T : Real_Time.Time) return Duration; function To_Duration (T : Real_Time.Time) return Duration;
-- Convert Time to Duration
procedure Delay_Until (T : Time); procedure Delay_Until (T : Time);
-- Delay until Clock has reached (at least) time T, -- Delay until Clock has reached (at least) time T,
-- or the task is aborted to at least the current ATC nesting level. -- or the task is aborted to at least the current ATC nesting level.
-- The body of this procedure must perform all the processing -- The body of this procedure must perform all the processing
-- required for an abortion point. -- required for an abort point.
end Ada.Real_Time.Delays; end Ada.Real_Time.Delays;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment