summaryrefslogtreecommitdiff
path: root/ACE/ace/Module.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Module.h')
-rw-r--r--ACE/ace/Module.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/ACE/ace/Module.h b/ACE/ace/Module.h
index e1130d25b8b..3999e41cdf2 100644
--- a/ACE/ace/Module.h
+++ b/ACE/ace/Module.h
@@ -40,8 +40,8 @@ class ACE_Export ACE_Module_Base
public:
enum
{
- /// Indicates that <close> should not delete any Tasks.
- M_DELETE_NONE = 0,
+ /// Indicates that the flags have not been set
+ M_FLAGS_NOT_SET = 0,
/// Indicates that <close> should delete the writer Task.
M_DELETE_READER = 1,
@@ -56,7 +56,10 @@ public:
* The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed
* together.
*/
- M_DELETE = 3
+ M_DELETE = 3,
+
+ /// Indicates that <close> should not delete any Tasks.
+ M_DELETE_NONE = 4,
};
};