diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-28 14:40:46 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-28 14:40:46 +0000 |
commit | fc0307f3083f292a66670d01906d6e1045166a9f (patch) | |
tree | 6a57bf1b79612ed109c744f841e1ba1cd7409abc /ace/OS.cpp | |
parent | 70510611e9cea69ed355ed49ce84cd3974b644a4 (diff) | |
download | ATCD-fc0307f3083f292a66670d01906d6e1045166a9f.tar.gz |
(ACE_Thread_Adapter::invoke): replaced call
to ACE_Thread::self () with call to ACE_OS::thr_self (),
so that we don't need to #include ace/Thread.h.
Diffstat (limited to 'ace/OS.cpp')
-rw-r--r-- | ace/OS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp index ecc007c55b1..0f993df9d35 100644 --- a/ace/OS.cpp +++ b/ace/OS.cpp @@ -2053,7 +2053,7 @@ ACE_Thread_Adapter::invoke (void) // order to get preemption when running in the RT class. This is // the ACE way to do that . . . ACE_hthread_t thr_handle; - ACE_Thread::self (thr_handle); + ACE_OS::thr_self (thr_handle); int prio; // thr_getprio () on the current thread should never fail. |