diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-14 20:48:03 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-14 20:48:03 +0000 |
commit | 54ef63a594d413ec6a61c33260cc281424023d8d (patch) | |
tree | ac622ec5bed906ad03d1a1e5d914aa8130f33dc0 /ace/OS.cpp | |
parent | caa8edaa53c6cd06cba23211fce2bfdd153a5335 (diff) | |
download | ATCD-54ef63a594d413ec6a61c33260cc281424023d8d.tar.gz |
pSOS fixes, ACE_PSOS_TM and ACE_Time_Value::max_time comments
Diffstat (limited to 'ace/OS.cpp')
-rw-r--r-- | ace/OS.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp index 8c34cb1da6b..40824747ef4 100644 --- a/ace/OS.cpp +++ b/ace/OS.cpp @@ -215,7 +215,12 @@ ACE_EXIT_HOOK ACE_OS::exit_hook_ = 0; // Static constant representing `zero-time'. const ACE_Time_Value ACE_Time_Value::zero; -// Static constant representing `maximum-time'. +// Constant for maximum time representable. Note that this time +// is not intended for use with select () or other calls that may +// have *their own* implementation-specific maximum time representations. +// Its primary use is in time computations such as those used by the +// dynamic subpriority strategies in the ACE_Dynamic_Message_Queue class. + const ACE_Time_Value ACE_Time_Value::max_time (LONG_MAX, ACE_ONE_SECOND_IN_USECS - 1); |