From 2e21fa6b925c4572d620248f1b149a5d652836b2 Mon Sep 17 00:00:00 2001 From: Nay Date: Mon, 17 Sep 2012 23:21:01 +0100 Subject: Core/Dependencies: Update ACE to v6.1.4 (Windows only) Tested in multiple configurations .diff with TC changes added --- dep/acelite/ace/Module.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'dep/acelite/ace/Module.h') diff --git a/dep/acelite/ace/Module.h b/dep/acelite/ace/Module.h index a7e4575e5f3..b015ec3e4c6 100644 --- a/dep/acelite/ace/Module.h +++ b/dep/acelite/ace/Module.h @@ -4,7 +4,7 @@ /** * @file Module.h * - * $Id: Module.h 91626 2010-09-07 10:59:20Z johnnyw $ + * $Id: Module.h 96061 2012-08-16 09:36:07Z mcorino $ * * @author Douglas C. Schmidt */ @@ -74,7 +74,7 @@ public: * general, you shouldn't subclass from this class, but instead * subclass from the ACE_Task. */ -template +template class ACE_Module : public ACE_Module_Base { public: @@ -88,8 +88,8 @@ public: /// Create an initialized module with @a module_name as its identity /// and @a reader and @a writer as its tasks. ACE_Module (const ACE_TCHAR *module_name, - ACE_Task *writer = 0, - ACE_Task *reader = 0, + ACE_Task *writer = 0, + ACE_Task *reader = 0, void *args = 0, int flags = M_DELETE); @@ -101,8 +101,8 @@ public: * . */ int open (const ACE_TCHAR *module_name, - ACE_Task *writer = 0, - ACE_Task *reader = 0, + ACE_Task *writer = 0, + ACE_Task *reader = 0, void *a = 0, int flags = M_DELETE); @@ -117,7 +117,7 @@ public: // = ACE_Task manipulation routines /// Get the writer task. - ACE_Task *writer (void); + ACE_Task *writer (void); /** * Set the writer task. @a flags can be used to indicate that the @@ -126,10 +126,10 @@ public: * also be deleted, depending on the old flags_ value. Should not * be called from within . */ - void writer (ACE_Task *q, int flags = M_DELETE_WRITER); + void writer (ACE_Task *q, int flags = M_DELETE_WRITER); /// Get the reader task. - ACE_Task *reader (void); + ACE_Task *reader (void); /** * Set the reader task. @a flags can be used to indicate that the @@ -138,10 +138,10 @@ public: * also be deleted, depending on the old flags_ value. Should not * be called from within . */ - void reader (ACE_Task *q, int flags = M_DELETE_READER); + void reader (ACE_Task *q, int flags = M_DELETE_READER); /// Set and get pointer to sibling ACE_Task in an ACE_Module - ACE_Task *sibling (ACE_Task *orig); + ACE_Task *sibling (ACE_Task *orig); // = Identify the module /// Get the module name. @@ -158,13 +158,13 @@ public: void arg (void *); /// Link to other modules in the ustream stack - void link (ACE_Module *m); + void link (ACE_Module *m); /// Get the next pointer to the module above in the stream. - ACE_Module *next (void); + ACE_Module *next (void); /// Set the next pointer to the module above in the stream. - void next (ACE_Module *m); + void next (ACE_Module *m); /// Dump the state of an object. void dump (void) const; @@ -179,13 +179,13 @@ private: /// Pair of Tasks that form the "read-side" and "write-side" of the /// ACE_Module partitioning. - ACE_Task *q_pair_[2]; + ACE_Task *q_pair_[2]; /// Name of the ACE_Module. ACE_TCHAR name_[MAXPATHLEN + 1]; /// Next ACE_Module in the stack. - ACE_Module *next_; + ACE_Module *next_; /// Argument passed through to the reader and writer task when they /// are opened. -- cgit v1.2.3