diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-03-21 21:34:49 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-03-21 21:34:49 +0000 |
commit | 3aef1b1dd5a6ca660a375310534e3d6d83f5c6a6 (patch) | |
tree | 688786cdc81f8db8eaf6210ef9c56f272ffac8d3 /ace/OS.i | |
parent | 873f8216da02936ac5605bd85acf0f95539f139d (diff) | |
download | ATCD-3aef1b1dd5a6ca660a375310534e3d6d83f5c6a6.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/OS.i')
-rw-r--r-- | ace/OS.i | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3920,7 +3920,8 @@ ACE_OS::thr_self (ACE_hthread_t &self) #elif defined (ACE_HAS_THREAD_SELF) self = ::thread_self (); #elif defined (ACE_HAS_PTHREADS) || defined (ACE_HAS_SETKIND_NP) - self = ::pthread_self (); + // Note, don't use "::" here since the following call is often a macro. + self = pthread_self (); #elif defined (ACE_HAS_STHREADS) self = ::thr_self (); #elif defined (ACE_HAS_WTHREADS) |