mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[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:
parent
c38c876b1d
commit
b8d773091a
343 changed files with 3060 additions and 7431 deletions
|
|
@ -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
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue