[10643] Update the ACE part we use to 5.8.2

Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
This commit is contained in:
Neo2003 2010-10-25 20:36:51 +02:00
parent 8f71d95c0d
commit 23c920ca4b
739 changed files with 22031 additions and 40373 deletions

View file

@ -1,11 +1,7 @@
// $Id: Thread.cpp 80826 2008-03-04 14:51:23Z wotte $
// $Id: Thread.cpp 91286 2010-08-05 09:04:31Z johnnyw $
#include "ace/Thread.h"
ACE_RCSID(ace,
Thread,
"$Id: Thread.cpp 80826 2008-03-04 14:51:23Z wotte $")
#if !defined (__ACE_INLINE__)
#include "ace/Thread.inl"
#endif /* !defined (__ACE_INLINE__) */
@ -26,22 +22,24 @@ ACE_Thread::spawn_n (size_t n,
const char* thr_name[])
{
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 ? ACE_DEFAULT_THREAD_STACKSIZE : stack_size[i],
thread_adapter,
thr_name == 0 ? 0 : &thr_name[i]) != 0)
break;
{
ACE_thread_t t_id;
// 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 ? ACE_DEFAULT_THREAD_STACKSIZE : stack_size[i],
thread_adapter,
thr_name == 0 ? 0 : &thr_name[i]) != 0)
break;
}
return i;
}