From b0cb8b351d9622b8bdf5957d8a05e0cd305add40 Mon Sep 17 00:00:00 2001 From: schmidt Date: Wed, 4 Aug 1999 21:08:14 +0000 Subject: ChangeLogTag:Wed Aug 4 15:56:51 1999 Douglas C. Schmidt --- ace/Task.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ace/Task.cpp') diff --git a/ace/Task.cpp b/ace/Task.cpp index 9295fe094c9..fbbc7678914 100644 --- a/ace/Task.cpp +++ b/ace/Task.cpp @@ -73,7 +73,7 @@ ACE_Task_Base::activate (long flags, ACE_hthread_t thread_handles[], void *stack[], size_t stack_size[], - ACE_thread_t thread_names[]) + ACE_thread_t thread_ids[]) { ACE_TRACE ("ACE_Task_Base::activate"); @@ -102,8 +102,8 @@ ACE_Task_Base::activate (long flags, this->thr_mgr_ = ACE_Thread_Manager::instance (); int grp_spawned = -1; - if (thread_names == 0) - // thread names were not specified + if (thread_ids == 0) + // Thread Ids were not specified grp_spawned = this->thr_mgr_->spawn_n (n_threads, ACE_THR_FUNC (&ACE_Task_Base::svc_run), @@ -118,7 +118,7 @@ ACE_Task_Base::activate (long flags, else // thread names were specified grp_spawned = - this->thr_mgr_->spawn_n (thread_names, + this->thr_mgr_->spawn_n (thread_ids, n_threads, ACE_THR_FUNC (&ACE_Task_Base::svc_run), (void *) this, @@ -152,7 +152,7 @@ ACE_Task_Base::activate (long flags, ACE_UNUSED_ARG (thread_handles); ACE_UNUSED_ARG (stack); ACE_UNUSED_ARG (stack_size); - ACE_UNUSED_ARG (thread_names); + ACE_UNUSED_ARG (thread_ids); ACE_NOTSUP_RETURN (-1); } #endif /* ACE_MT_SAFE */ -- cgit v1.2.1