summaryrefslogtreecommitdiff
path: root/ace/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Thread.h')
-rw-r--r--ace/Thread.h10
1 files changed, 5 insertions, 5 deletions
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.