[10874] Update ACE to v5.8.3

(based on zergtmn's repo commit 3a8c259)
(based on zergtmn's repo commit 946c1a8)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
zerg 2010-12-14 17:14:34 +03:00 committed by VladimirMangos
parent c38c876b1d
commit b8d773091a
343 changed files with 3060 additions and 7431 deletions

View file

@ -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
};
};