diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-10 08:49:56 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-10 08:49:56 +0000 |
commit | 64d036b51612261ffa53bbdba38ff8e6e99fc016 (patch) | |
tree | ff947ccd272b645b872902a961c0907b7f974469 /ace/Thread.h | |
parent | 7db29418e44bdce4e3df96493b852118cdd82a4a (diff) | |
download | ATCD-64d036b51612261ffa53bbdba38ff8e6e99fc016.tar.gz |
eon
Diffstat (limited to 'ace/Thread.h')
-rw-r--r-- | ace/Thread.h | 7 |
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. |