diff options
author | click <none@none> | 2010-11-04 05:30:29 +0100 |
---|---|---|
committer | click <none@none> | 2010-11-04 05:30:29 +0100 |
commit | 9b16ee203f3f8e6e21c4864bd3308bf58c7b6800 (patch) | |
tree | 14950af01860fc520bbbd320c7ad81ef0281cbf3 /dep/acelite/ace/Module.h | |
parent | 2604250c3c4efd93e9977f2eb72d6398a7a7bcb2 (diff) |
Dep/ACE: Upgrade ACE -library to 5.8.3
--HG--
branch : trunk
Diffstat (limited to 'dep/acelite/ace/Module.h')
-rw-r--r-- | dep/acelite/ace/Module.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dep/acelite/ace/Module.h b/dep/acelite/ace/Module.h index 4ae5c285d89..a7e4575e5f3 100644 --- a/dep/acelite/ace/Module.h +++ b/dep/acelite/ace/Module.h @@ -4,7 +4,7 @@ /** * @file Module.h * - * $Id: Module.h 85417 2009-05-22 08:31:42Z johnnyw $ + * $Id: Module.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -43,22 +43,22 @@ public: /// Indicates that the flags have not been set M_FLAGS_NOT_SET = 0, - /// Indicates that <close> should delete the writer Task. + /// Indicates that close() should delete the writer Task. M_DELETE_READER = 1, - /// Indicates that <close> should delete the reader Task. + /// Indicates that close() should delete the reader Task. M_DELETE_WRITER = 2, - /// Indicates that <close> deletes the Tasks. + /// Indicates that close() deletes the Tasks. /** * Don't change this value without updating the same enum in class * ACE_Stream... - * The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed + * The M_DELETE_READER and M_DELETE_WRITER flags may be or'ed * together. */ M_DELETE = 3, - /// Indicates that <close> should not delete any Tasks. + /// Indicates that close() should not delete any Tasks. M_DELETE_NONE = 4 }; }; |