summaryrefslogtreecommitdiff
path: root/ACE/ace/Proactor.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-10-22 19:04:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-10-22 19:04:34 +0000
commitf063884d64baa896225f56e15718edc226009f75 (patch)
tree0f1cb256841382c0368f22425510cf86cdaf2e8a /ACE/ace/Proactor.h
parent1faaf2171e3db88e198270bfe4a63515c724301b (diff)
downloadATCD-f063884d64baa896225f56e15718edc226009f75.tar.gz
Mon Oct 22 19:03:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Proactor.h')
-rw-r--r--ACE/ace/Proactor.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Proactor.h b/ACE/ace/Proactor.h
index b9d0f3cdf07..3dcef886d87 100644
--- a/ACE/ace/Proactor.h
+++ b/ACE/ace/Proactor.h
@@ -178,19 +178,19 @@ public:
TIMER_QUEUE;
/**
- * Constructor. If <implementation> is 0, the correct implementation
- * object will be created. <delete_implementation> flag determines
+ * Constructor. If @a implementation is 0, the correct implementation
+ * object will be created. @a delete_implementation flag determines
* whether the implementation object should be deleted by the
- * Proactor or not. If <tq> is 0, a new TIMER_QUEUE is created.
+ * Proactor or not. If @a tq is 0, a new TIMER_QUEUE is created.
*/
ACE_Proactor (ACE_Proactor_Impl *implementation = 0,
- int delete_implementation = 0,
+ bool delete_implementation = false,
TIMER_QUEUE *tq = 0);
/// Destruction.
~ACE_Proactor (void);
- /// Get pointer to a process-wide ACE_Proactor. <threads> should
+ /// Get pointer to a process-wide ACE_Proactor. @a threads should
/// be part of another method.
static ACE_Proactor *instance (size_t threads = 0);
@@ -599,7 +599,7 @@ protected:
/// Flag used to indicate whether we are responsible for cleaning up
/// the implementation instance.
- int delete_implementation_;
+ bool delete_implementation_;
/// Pointer to a process-wide ACE_Proactor.
static ACE_Proactor *proactor_;