summaryrefslogtreecommitdiff
path: root/TAO/tao/GUIResource_Factory.h
diff options
context:
space:
mode:
authorseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
committerseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
commit47b676670dc9373bc77af80388e0b51e36134738 (patch)
treeaacce0809279e1d142e7b196a84ff10dfbdae4d0 /TAO/tao/GUIResource_Factory.h
parent3dd4e2fe6c64de3a9db04757eade78d764b578f1 (diff)
downloadATCD-GH5_0port.tar.gz
Added the ACE and TAO for this branchGH5_0port
Diffstat (limited to 'TAO/tao/GUIResource_Factory.h')
-rw-r--r--TAO/tao/GUIResource_Factory.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/TAO/tao/GUIResource_Factory.h b/TAO/tao/GUIResource_Factory.h
index e0f2dab0543..aae6da6ba35 100644
--- a/TAO/tao/GUIResource_Factory.h
+++ b/TAO/tao/GUIResource_Factory.h
@@ -59,8 +59,7 @@ namespace TAO
*/
virtual ACE_Reactor *get_reactor (void) ;
- /**
- * Reclaim the reactor if allocated by this factory.
+ /** Reclaim the reactor if allocated by this factory.
* Please note that this call is NOT synchronized. Left to the
* higher level versions to synchronize access.
*/
@@ -68,8 +67,7 @@ namespace TAO
protected:
- /**
- * Create or return current reactor instance.
+ /** Create or return current reactor instance.
* Please note that this call is NOT synchronized. Left to the
* get_reactor to synchronize access.
*/
@@ -78,9 +76,9 @@ namespace TAO
private:
/**
- * Flag that is set to true if the reactor obtained from the
+ * Flag that is set to 1 if the reactor obtained from the
* get_reactor() method is dynamically allocated. If this flag is
- * set to true, then the reclaim_reactor() method with call the delete
+ * set to 1, then the reclaim_reactor() method with call the delete
* operator on the given reactor. This flag is necessary to make
* sure that a reactor not allocated by the default resource factory
* is not reclaimed by the default resource factory. Such a
@@ -88,7 +86,7 @@ namespace TAO
* default one overrides the get_reactor() method but does not
* override the reclaim_reactor() method.
*/
- bool dynamically_allocated_reactor_;
+ int dynamically_allocated_reactor_;
/// for internal locking.
TAO_SYNCH_MUTEX lock_;