summaryrefslogtreecommitdiff
path: root/gcc/ada/a-caldel.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-15 16:19:40 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-15 16:19:40 +0000
commit499f3d24605eba5c1be61b4cb04e01008554361a (patch)
treef3daea4db10883323aa8c12fd8894fd4fa00c5f3 /gcc/ada/a-caldel.ads
parent68fa183e21f353a336f5d6343ce64b57179e7df1 (diff)
downloadgcc-499f3d24605eba5c1be61b4cb04e01008554361a.tar.gz
2005-03-08 Robert Dewar <dewar@adacore.com>
* s-bitops.adb, s-bitops.ads, s-taprop-os2.adb, s-intman-vms.ads, s-intman-vxworks.ads, s-taprop-vxworks.adb, a-caldel.ads, a-calend.adb, a-tasatt.adb, tbuild.ads, s-finimp.adb, s-imgwch.adb, s-intman.ads, s-intman.ads, s-memory.adb, s-soflin.ads, s-taasde.ads, s-taprob.adb, s-taprop.ads, s-taprop.ads, s-tasini.adb, s-tasini.ads, s-tasini.ads, s-tasini.ads, s-taskin.ads, s-tasren.adb, s-tassta.adb, s-tassta.ads, s-tassta.ads, s-tasuti.ads, s-tataat.ads, s-tataat.ads, s-tataat.ads, s-tataat.ads, s-tpoben.adb, s-tpoben.adb, s-tpobop.ads: Update comments. Minor reformatting. 2005-03-08 Eric Botcazou <ebotcazou@adacore.com> * utils2.c (build_binary_op): Fix typo. 2005-03-08 Doug Rupp <rupp@adacore.com> * s-crtl.ads (popen,pclose): New imports. 2005-03-08 Cyrille Comar <comar@adacore.com> * comperr.adb (Compiler_Abort): remove references to obsolete procedures in the bug boxes for various GNAT builds. 2005-03-08 Vincent Celier <celier@adacore.com> * snames.ads, snames.adb: Save as Unix text file, not as DOS text file git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96512 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-caldel.ads')
-rw-r--r--gcc/ada/a-caldel.ads19
1 files changed, 9 insertions, 10 deletions
diff --git a/gcc/ada/a-caldel.ads b/gcc/ada/a-caldel.ads
index c2ea1a8aa3a..f69634b341d 100644
--- a/gcc/ada/a-caldel.ads
+++ b/gcc/ada/a-caldel.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-1998, 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 --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -39,18 +39,17 @@
package Ada.Calendar.Delays is
procedure Delay_For (D : Duration);
- -- Delay until an interval of length (at least) D seconds has passed,
- -- or the task is aborted to at least the current ATC nesting level.
- -- This is an abort completion point.
- -- The body of this procedure must perform all the processing
- -- required for an abortion point.
+ -- Delay until an interval of length (at least) D seconds has passed, or
+ -- the task is aborted to at least the current ATC nesting level. This is
+ -- an abort completion point. The body of this procedure must perform all
+ -- the processing required for an abort point.
procedure Delay_Until (T : Time);
- -- Delay until Clock has reached (at least) time T,
- -- or the task is aborted to at least the current ATC nesting level.
- -- The body of this procedure must perform all the processing
- -- required for an abortion point.
+ -- Delay until Clock has reached (at least) time T, or the task is aborted
+ -- to at least the current ATC nesting level. The body of this procedure
+ -- must perform all the processing required for an abort point.
function To_Duration (T : Time) return Duration;
+ -- Convert Time to Duration
end Ada.Calendar.Delays;