summaryrefslogtreecommitdiff
path: root/ACE/ace/Task_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-15 13:41:25 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-15 13:41:25 +0000
commit4c1ec894e4845156036937d1e4dbfcae3fd6f3f3 (patch)
tree233d2ae945fecd0cb15dbecdbe14e8b3f59e33ce /ACE/ace/Task_T.h
parentefff99504bd67f08226503c6e763d8881fb11f29 (diff)
downloadATCD-4c1ec894e4845156036937d1e4dbfcae3fd6f3f3.tar.gz
Thu Feb 15 13:38:58 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Task_T.h')
-rw-r--r--ACE/ace/Task_T.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Task_T.h b/ACE/ace/Task_T.h
index af029a42ec8..5531e136b0b 100644
--- a/ACE/ace/Task_T.h
+++ b/ACE/ace/Task_T.h
@@ -69,25 +69,25 @@ public: // Should be protected:
// = Enqueue and dequeue methods.
- // For the following five method if <timeout> == 0, the caller will
+ // For the following five method if @a timeout == 0, the caller will
// block until action is possible, else will wait until the
- // <{absolute}> time specified in *<timeout> elapses). These calls
+ // <{absolute}> time specified in *@a timeout elapses). These calls
// will return, however, when queue is closed, deactivated, when a
// signal occurs, or if the time specified in timeout elapses, (in
// which case errno = EWOULDBLOCK).
- /// Insert message into the message queue. Note that <timeout> uses
+ /// Insert message into the message queue. Note that @a timeout uses
/// <{absolute}> time rather than <{relative}> time.
int putq (ACE_Message_Block *, ACE_Time_Value *timeout = 0);
/**
* Extract the first message from the queue (blocking). Note that
- * <timeout> uses <{absolute}> time rather than <{relative}> time.
+ * @a timeout uses <{absolute}> time rather than <{relative}> time.
* Returns number of items in queue if the call succeeds or -1 otherwise.
*/
int getq (ACE_Message_Block *&mb, ACE_Time_Value *timeout = 0);
- /// Return a message to the queue. Note that <timeout> uses
+ /// Return a message to the queue. Note that @a timeout uses
/// <{absolute}> time rather than <{relative}> time.
int ungetq (ACE_Message_Block *, ACE_Time_Value *timeout = 0);
@@ -106,7 +106,7 @@ public: // Should be protected:
/**
* Transfer message to the adjacent ACE_Task in a ACE_Stream. Note
- * that <timeout> uses <{absolute}> time rather than <{relative}>
+ * that @a timeout uses <{absolute}> time rather than <{relative}>
* time.
*/
int put_next (ACE_Message_Block *msg, ACE_Time_Value *timeout = 0);