diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-22 08:25:00 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-22 08:25:00 +0000 |
commit | b649be2aae288973ae448567b40b0d38c62a4f9d (patch) | |
tree | ee5df5399380c39aa3b513cc20ce83024ab65149 /ace/Thread.cpp | |
parent | 7ed33b3e1c9d189a3fcef773f5c9482dcc304c34 (diff) | |
download | ATCD-TAO-0_2_13.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-0_2_13'.TAO-0_2_13
Diffstat (limited to 'ace/Thread.cpp')
-rw-r--r-- | ace/Thread.cpp | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/ace/Thread.cpp b/ace/Thread.cpp deleted file mode 100644 index 19e647d017a..00000000000 --- a/ace/Thread.cpp +++ /dev/null @@ -1,91 +0,0 @@ -// Thread.cpp -// $Id$ - -#define ACE_BUILD_DLL -#include "ace/Thread.h" - -#if !defined (__ACE_INLINE__) -#include "ace/Thread.i" -#endif /* !defined (__ACE_INLINE__) */ - -ACE_RCSID(ace, Thread, "$Id$") - -#if defined (ACE_HAS_THREADS) - -int -ACE_Thread::spawn_n (size_t n, - ACE_THR_FUNC func, - void *arg, - long flags, - long priority, - void *stack[], - size_t stack_size[], - ACE_Thread_Adapter *thread_adapter) -{ - ACE_TRACE ("ACE_Thread::spawn_n"); - ACE_thread_t t_id; - size_t i; - - for (i = 0; i < n; i++) - // Bail out if error occurs. - if (ACE_OS::thr_create (func, - arg, - flags, - &t_id, - 0, - priority, - stack == 0 ? 0 : stack[i], - stack_size == 0 ? 0 : stack_size[i], - thread_adapter) != 0) - break; - - return i; -} - -int -ACE_Thread::spawn_n (ACE_thread_t thread_ids[], - size_t n, - ACE_THR_FUNC func, - void *arg, - long flags, - long priority, - void *stack[], - size_t stack_size[], - ACE_hthread_t thread_handles[], - ACE_Thread_Adapter *thread_adapter) -{ - ACE_TRACE ("ACE_Thread::spawn_n"); - size_t i; - - for (i = 0; i < n; i++) - { - ACE_thread_t t_id; - ACE_hthread_t t_handle; - - int result = - ACE_OS::thr_create (func, - arg, - flags, - &t_id, - &t_handle, - priority, - stack == 0 ? 0 : stack[i], - stack_size == 0 ? 0 : stack_size[i], - thread_adapter); - - if (result == 0) - { - if (thread_ids != 0) - thread_ids[i] = t_id; - if (thread_handles != 0) - thread_handles[i] = t_handle; - } - else - // Bail out if error occurs. - break; - } - - return i; -} - -#endif /* ACE_HAS_THREADS */ |