diff options
author | click <none@none> | 2010-08-15 00:28:14 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-15 00:28:14 +0200 |
commit | e3b8a5923d5e5512cfe6e0f02246d22146691008 (patch) | |
tree | c7bed4a5667148d73b75ab62eae9695eb10cad49 /externals/ace/Stream.h | |
parent | f3b93df6b70648fdd644c6e0db24089dca34738e (diff) |
Core/externals: Update ACE to 5.8.1 (should fix issues with disconnects happening on servers compiled under VS2010)
Update issue 3411
Status: NeedsFeedback
--HG--
branch : trunk
Diffstat (limited to 'externals/ace/Stream.h')
-rw-r--r-- | externals/ace/Stream.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/externals/ace/Stream.h b/externals/ace/Stream.h index dbf496a6ee6..9172485c132 100644 --- a/externals/ace/Stream.h +++ b/externals/ace/Stream.h @@ -4,7 +4,7 @@ /** * @file Stream.h * - * $Id: Stream.h 84477 2009-02-16 13:30:38Z johnnyw $ + * $Id: Stream.h 91058 2010-07-12 08:20:09Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@uci.edu> */ @@ -37,8 +37,8 @@ class ACE_Time_Value; * @brief This class is the primary abstraction for the ASX framework. * It is moduled after System V Stream. * - * A Stream consists of a stack of <ACE_Modules>, each of which - * contains two <ACE_Tasks>. Even though the methods in this + * A Stream consists of a stack of @c ACE_Modules, each of which + * contains two @c ACE_Tasks. Even though the methods in this * class are virtual, this class isn't really intended for * subclassing unless you know what you are doing. In * particular, the ACE_Stream destructor calls <close>, which @@ -53,7 +53,7 @@ public: enum { - /// Indicates that <close> deletes the Tasks. Don't change this + /// Indicates that @c close() deletes the Tasks. Don't change this /// value without updating the same enum in class ACE_Module... M_DELETE = 3 }; @@ -88,7 +88,7 @@ public: // = ACE_Stream plumbing operations /// Add a new module @a mod right below the Stream head. The - /// <open()> hook methods of the <ACE_Tasks> in this ACE_Module + /// @c open() hook methods of the @c ACE_Tasks in this ACE_Module /// are invoked to initialize the tasks. virtual int push (ACE_Module<ACE_SYNCH_USE> *mod); @@ -101,7 +101,7 @@ public: /// head). virtual int top (ACE_Module<ACE_SYNCH_USE> *&mod); - /// Insert a new module @a mod below the named module <prev_name>. + /// Insert a new module @a mod below the named module @a prev_name. virtual int insert (const ACE_TCHAR *prev_name, ACE_Module<ACE_SYNCH_USE> *mod); @@ -111,7 +111,7 @@ public: int flags = M_DELETE); /// Remove the named module @a mod from the stream. This bypasses the - /// strict LIFO ordering of <push> and <pop>. + /// strict LIFO ordering of @c push and @c pop. virtual int remove (const ACE_TCHAR *mod, int flags = M_DELETE); @@ -218,7 +218,7 @@ public: int advance (void); private: - /// Next <Module> that we haven't yet seen. + /// Next ACE_Module that we haven't yet seen. ACE_Module<ACE_SYNCH_USE> *next_; }; |