summaryrefslogtreecommitdiff
path: root/ace/Module.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-11-30 00:33:43 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-11-30 00:33:43 +0000
commit8ca31fd725b7bd02f2038a5b3a03c3da64b6b48c (patch)
treedd496dde3c016a1db5d3882e1dc40c9af7e9aaf8 /ace/Module.h
parent42f04951935318cb83949862c4abd11a8386cc91 (diff)
downloadATCD-8ca31fd725b7bd02f2038a5b3a03c3da64b6b48c.tar.gz
Eon
Diffstat (limited to 'ace/Module.h')
-rw-r--r--ace/Module.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ace/Module.h b/ace/Module.h
index 3f505121166..6f459afeb5f 100644
--- a/ace/Module.h
+++ b/ace/Module.h
@@ -1,7 +1,6 @@
/* -*- C++ -*- */
// $Id$
-
// ============================================================================
//
// = LIBRARY
@@ -47,6 +46,9 @@ public:
ACE_Module (void);
// Create an empty Module.
+ ~ACE_Module (void);
+ // Shutdown the Module.
+
ACE_Module (const char *module_name,
ACE_Task<ACE_SYNCH_2> *writer = 0,
ACE_Task<ACE_SYNCH_2> *reader = 0,
@@ -108,9 +110,6 @@ public:
// Declare the dynamic allocation hooks.
private:
- ~ACE_Module (void);
- // *Must* use dynamic allocation.
-
ACE_Task<ACE_SYNCH_2> *q_pair_[2];
// Pair of Tasks that form the "read-side" and "write-side" of the
// ACE_Module partitioning.