diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-09 09:20:22 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-09 09:20:22 +0000 |
commit | 46137c1ae4ce34179d4cb36f8e34d1b9faec5335 (patch) | |
tree | beae67b7969f4cc7f6130b9d43aa224aabfbd886 /ace/Thread_Manager.cpp | |
parent | 17d837a34a6ee374b4932c65bad822ed88a51736 (diff) | |
download | ATCD-46137c1ae4ce34179d4cb36f8e34d1b9faec5335.tar.gz |
Fixed a syntax error.
Diffstat (limited to 'ace/Thread_Manager.cpp')
-rw-r--r-- | ace/Thread_Manager.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ace/Thread_Manager.cpp b/ace/Thread_Manager.cpp index d89aea3e85a..0f7f95921f5 100644 --- a/ace/Thread_Manager.cpp +++ b/ace/Thread_Manager.cpp @@ -1269,19 +1269,15 @@ ACE_Thread_Manager::wait (const ACE_Time_Value *timeout) return -1; // Release the guard, giving other threads a chance to run. - } + } #if !defined (VXWORKS) - { - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1)); - ACE_Thread_Descriptor item; while (this->terminated_thr_queue_.dequeue_head (item) == 0) if (ACE_BIT_DISABLED (item.flags_, (THR_DETACHED | THR_DAEMON)) || ACE_BIT_ENABLED (item.flags_, THR_JOINABLE)) ACE_Thread::join (item.thr_handle_); - } #endif /* VXWORKS */ #else ACE_UNUSED_ARG (timeout); |