diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-04-24 20:24:58 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-04-24 20:24:58 +0000 |
commit | 3bad0539c4ee2cad63c3eec6527d1ef88164e134 (patch) | |
tree | 11a3650a7f967bdc7ac043082c60baf6c1e003cc /ace/Future.h | |
parent | 345e00ac1aa46a94172edd567cc6310b769e070c (diff) | |
download | ATCD-3bad0539c4ee2cad63c3eec6527d1ef88164e134.tar.gz |
.
Diffstat (limited to 'ace/Future.h')
-rw-r--r-- | ace/Future.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Future.h b/ace/Future.h index 36d65b46cb0..e512f627f26 100644 --- a/ace/Future.h +++ b/ace/Future.h @@ -73,7 +73,8 @@ private: int get (T &value, ACE_Time_Value *tv); - // Wait up to <tv> time to get the <value>. + // Wait up to <tv> time to get the <value>. Note that <tv> must be + // specified in absolute time rather than relative time. operator T (); // Type conversion. will block forever until the result is @@ -160,7 +161,8 @@ public: int get (T &value, ACE_Time_Value *tv = 0); - // Wait up to <tv> time to get the <value>. + // Wait up to <tv> time to get the <value>. Note that <tv> must be + // specified in absolute time rather than relative time. operator T (); // Type conversion, which obtains the result of the asynchronous |