diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 06:17:26 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 06:17:26 +0000 |
commit | 3d1fd48b9a70f63f42f90173ebcff29a6e9327fc (patch) | |
tree | 7d32454708aef5d15a16bf6bb1dacc71eb36e675 /ace/Thread.i | |
parent | 51070bb6d99f0f0f824f2a0363aaec23c65a2e49 (diff) | |
download | ATCD-3d1fd48b9a70f63f42f90173ebcff29a6e9327fc.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Thread.i')
-rw-r--r-- | ace/Thread.i | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ace/Thread.i b/ace/Thread.i index 3b22a327be8..e720946c39b 100644 --- a/ace/Thread.i +++ b/ace/Thread.i @@ -78,11 +78,19 @@ ACE_Thread::spawn (ACE_THR_FUNC func, ACE_hthread_t *t_handle, long priority, void *stack, - size_t stack_size) + size_t stack_size, + ACE_Thread_Adapter *thread_adapter) { ACE_TRACE ("ACE_Thread::spawn"); - return ACE_OS::thr_create (func, arg, flags, t_id, t_handle, - priority, stack, stack_size); + return ACE_OS::thr_create (func, + arg, + flags, + t_id, + t_handle, + priority, + stack, + stack_size, + thread_adapter); } ACE_INLINE int |