diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-12-11 18:19:28 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-12-11 18:19:28 +0000 |
commit | 1edb87f2860fb4a2471acf1753d9b7667dc01000 (patch) | |
tree | 0f0f0f1c82d47d8eb48a1644a06679fee48ef365 /ace/Thread.h | |
parent | 49f9f8bb52bf04360c80e1563ac492ab0b9b1926 (diff) | |
download | ATCD-1edb87f2860fb4a2471acf1753d9b7667dc01000.tar.gz |
ChangeLogTag: Thu Dec 11 18:13:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Thread.h')
-rw-r--r-- | ace/Thread.h | 10 |
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. |