summaryrefslogtreecommitdiff
path: root/ace/Thread.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-10 08:49:56 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-10 08:49:56 +0000
commit64d036b51612261ffa53bbdba38ff8e6e99fc016 (patch)
treeff947ccd272b645b872902a961c0907b7f974469 /ace/Thread.h
parent7db29418e44bdce4e3df96493b852118cdd82a4a (diff)
downloadATCD-64d036b51612261ffa53bbdba38ff8e6e99fc016.tar.gz
eon
Diffstat (limited to 'ace/Thread.h')
-rw-r--r--ace/Thread.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ace/Thread.h b/ace/Thread.h
index 02f8f1d8e46..aab4b61f413 100644
--- a/ace/Thread.h
+++ b/ace/Thread.h
@@ -98,8 +98,11 @@ public:
static void yield (void);
// Yield the thread to another.
- static void self (ACE_hthread_t &t_id);
- // Return the unique kernel ID of the thread.
+ static void self (ACE_hthread_t &t_handle);
+ // Return the unique kernel handle of the thread. Note that on
+ // Win32 this is actually a pseudohandle, which cannot be shared
+ // with other processes or waited on by threads. To locate the real
+ // handle, please use the <ACE_Thread_Manager::thr_self> method.
static ACE_thread_t self (void);
// Return the unique ID of the thread.