summaryrefslogtreecommitdiff
path: root/ACE/ace/Task.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
commitaa30c8711cfe2c1837eedfcd7ae1b699cbe8969a (patch)
tree97c9ccc26374d117cbd4ee5f0274f7dcfac396c3 /ACE/ace/Task.h
parente8a07ecf4d01d49b6a87464b16e213777267f82f (diff)
downloadATCD-aa30c8711cfe2c1837eedfcd7ae1b699cbe8969a.tar.gz
Mon Jul 12 08:19:58 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Connector.h: * ace/Malloc_Base.h: * ace/SString.h: * ace/Stream.h: * ace/Task.h: Fixed set of doxygen warnings
Diffstat (limited to 'ACE/ace/Task.h')
-rw-r--r--ACE/ace/Task.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/Task.h b/ACE/ace/Task.h
index 757cf651323..3eb6ef246e3 100644
--- a/ACE/ace/Task.h
+++ b/ACE/ace/Task.h
@@ -84,21 +84,21 @@ public:
/**
* Hook called from ACE_Thread_Exit when during thread exit and from
- * the default implementation of <module_closed>. In general, this
+ * the default implementation of @c module_closed(). In general, this
* method shouldn't be called directly by an application,
- * particularly if the <Task> is running as an Active Object.
- * Instead, a special message should be passed into the <Task> via
- * the <put> method defined below, and the <svc> method should
- * interpret this as a flag to shut down the <Task>.
+ * particularly if the Task is running as an Active Object.
+ * Instead, a special message should be passed into the Task via
+ * the put() method defined below, and the svc() method should
+ * interpret this as a flag to shut down the Task.
*/
virtual int close (u_long flags = 0);
/**
- * Hook called during <ACE_Module::close>. The default
+ * Hook called during ACE_Module::close(). The default
* implementation calls forwards the call to close(1). Please
- * notice the changed value of the default argument of <close>.
+ * notice the changed value of the default argument of close().
* This allows tasks to differ between the call has been originated
- * from <ACE_Thread_Exit> or from <module_closed>. Be aware that
+ * from ACE_Thread_Exit or from module_closed(). Be aware that
* close(0) will be also called when a thread associated with the
* ACE_Task instance exits.
*/
@@ -111,7 +111,7 @@ public:
/// A hook method that can be used to pass a message to a
/// task, where it can be processed immediately or queued for subsequent
- /// processing in the <svc> hook method.
+ /// processing in the svc() hook method.
virtual int put (ACE_Message_Block *, ACE_Time_Value * = 0);
/// Run by a daemon thread to handle deferred processing.