diff options
author | Steve Huston <shuston@riverace.com> | 2001-03-02 17:31:49 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2001-03-02 17:31:49 +0000 |
commit | 3f0c61d44a45bcdc7826a6b2504131008639a62f (patch) | |
tree | 7dd25e6a9765693a8b74306fb59d6a22a2eebd1a /ace/Thread_Manager.cpp | |
parent | 33384a4e17c5e2b3e1eb04be737b353e74c0eef0 (diff) | |
download | ATCD-3f0c61d44a45bcdc7826a6b2504131008639a62f.tar.gz |
ChangeLogTag:Fri Mar 02 12:24:27 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Thread_Manager.cpp')
-rw-r--r-- | ace/Thread_Manager.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ace/Thread_Manager.cpp b/ace/Thread_Manager.cpp index 433e2080f41..4fa0fdab0d0 100644 --- a/ace/Thread_Manager.cpp +++ b/ace/Thread_Manager.cpp @@ -952,20 +952,6 @@ ACE_Thread_Manager::join_thr (ACE_Thread_Descriptor *td, int) return ACE_Thread::join (td->thr_handle_); #else int result = ACE_Thread::join (td->thr_handle_); - -# if defined (ACE_HAS_PTHREADS_DRAFT4) && defined (ACE_LACKS_SETDETACH) -# if defined (HPUX_10) - // HP-UX DCE threads' pthread_detach will smash thr_id if it's just given - // as an argument. Since the id is still needed, give pthread_detach - // a junker to scribble on. - ACE_thread_t junker; - cma_handle_assign(&td->thr_handle_, &junker); - ::pthread_detach (&junker); -# else - ::pthread_detach (&td->thr_handle_); -# endif /* HPUX_10 */ -# endif /* ACE_HAS_PTHREADS_DRAFT4 && ACE_LACKS_SETDETACH */ - if (result != 0) { // Since the thread are being joined, we should |