diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-03-15 17:19:40 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-03-15 17:19:40 +0100 |
commit | 1a49cf99b76257b0a6e66021f97f05d292065229 (patch) | |
tree | f3daea4db10883323aa8c12fd8894fd4fa00c5f3 /gcc/ada/s-taasde.ads | |
parent | 728c3084ee3b33f86c66ed6b401f56107d307dd7 (diff) | |
download | gcc-1a49cf99b76257b0a6e66021f97f05d292065229.tar.gz |
[multiple changes]
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
From-SVN: r96512
Diffstat (limited to 'gcc/ada/s-taasde.ads')
-rw-r--r-- | gcc/ada/s-taasde.ads | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ada/s-taasde.ads b/gcc/ada/s-taasde.ads index 21e24f616ae..ce21a5dfab8 100644 --- a/gcc/ada/s-taasde.ads +++ b/gcc/ada/s-taasde.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1998-2004 Free Software Foundation, Inc. -- +-- Copyright (C) 1998-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- -- @@ -31,8 +31,8 @@ -- -- ------------------------------------------------------------------------------ --- This package contains the procedures to implements timeouts (delays) --- for asynchronous select statements. +-- This package contains the procedures to implements timeouts (delays) for +-- asynchronous select statements. -- Note: the compiler generates direct calls to this interface, via Rtsfind. -- Any changes to this interface may require corresponding compiler changes. @@ -100,8 +100,8 @@ package System.Tasking.Async_Delays is (T : in Duration; D : Delay_Block_Access) return Boolean; -- Enqueue the specified relative delay. Returns True if the delay has - -- been enqueued, False if it has already expired. - -- If the delay has been enqueued, abortion is deferred. + -- been enqueued, False if it has already expired. If the delay has been + -- enqueued, abort is deferred. procedure Cancel_Async_Delay (D : Delay_Block_Access); -- Cancel the specified asynchronous delay @@ -117,10 +117,10 @@ package System.Tasking.Async_Delays is private type Delay_Block is record - Self_Id : Task_Id; + Self_Id : Task_Id; -- ID of the calling task - Level : ATC_Level_Base; + Level : ATC_Level_Base; -- Normally Level is the ATC nesting level of the -- async. select statement to which this delay belongs, but -- after a call has been dequeued we set it to @@ -130,10 +130,10 @@ private Resume_Time : Duration; -- The absolute wake up time, represented as Duration - Timed_Out : Boolean := False; + Timed_Out : Boolean := False; -- Set to true if the delay has timed out - Succ, Pred : Delay_Block_Access; + Succ, Pred : Delay_Block_Access; -- A double linked list end record; |