summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-12-11 18:19:28 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-12-11 18:19:28 +0000
commit1edb87f2860fb4a2471acf1753d9b7667dc01000 (patch)
tree0f0f0f1c82d47d8eb48a1644a06679fee48ef365
parent49f9f8bb52bf04360c80e1563ac492ab0b9b1926 (diff)
downloadATCD-1edb87f2860fb4a2471acf1753d9b7667dc01000.tar.gz
ChangeLogTag: Thu Dec 11 18:13:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/Message_Queue.h6
-rw-r--r--ace/Thread.h10
2 files changed, 8 insertions, 8 deletions
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index 1ee6526f396..9cd0ab757a2 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -62,11 +62,11 @@ public:
// and WAS_INACTIVE are defined to match previous semantics for
// applications that don't use the PULSED state.
- WAS_ACTIVE = 1, /* DEPRECATED */
+ WAS_ACTIVE = 1, /* @deprecated Use ACTIVATED instead. */
/// Message queue is active and processing normally
ACTIVATED = 1,
- WAS_INACTIVE = 2, /* DEPRECATED */
+ WAS_INACTIVE = 2, /* @deprecated Use DEACTIVATED instead. */
/// Queue is deactivated; no enqueue or dequeue operations allowed.
DEACTIVATED = 2,
@@ -222,7 +222,7 @@ private:
# include /**/ <msgQLib.h>
# include "ace/Null_Mutex.h"
# include "ace/Null_Condition.h"
-
+
/**
* @class ACE_Message_Queue_Vx
*
diff --git a/ace/Thread.h b/ace/Thread.h
index 0da56b10427..fcfe867ff99 100644
--- a/ace/Thread.h
+++ b/ace/Thread.h
@@ -197,17 +197,17 @@ public:
const sigset_t *sigset,
sigset_t *osigset = 0);
+ /**
+ * Allocates a <keyp> that is used to identify data that is specific
+ * to each thread in the process. The key is global to all threads
+ * in the process.
+ */
static int keycreate (ACE_thread_key_t *keyp,
#if defined (ACE_HAS_THR_C_DEST)
ACE_THR_C_DEST destructor,
#else
ACE_THR_DEST destructor,
#endif /* ACE_HAS_THR_C_DEST */
- /**
- * Allocates a <keyp> that is used to identify data that is specific
- * to each thread in the process. The key is global to all threads
- * in the process.
- */
void * = 0);
/// Free up the key so that other threads can reuse it.