Skip to content

Commit 473396d

Browse files
committed
Use new functions for named threads in TAO TPC
Updated NEWS
1 parent 91d25a5 commit 473396d

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

ACE/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ USER VISIBLE CHANGES BETWEEN ACE-8.0.2 and ACE-8.0.3
2121
. Updated support for Green Hills INTEGRITY and INTEGRITY-178 tuMP RTOS.
2222
Tested on INTEGRITY 11.4.6 and INTEGRITY-178 5.0.0.
2323

24+
. Thread names given to ACE_OS::thr_create are now passed down to the OS
25+
on Windows and on INTEGRITY.
26+
2427
USER VISIBLE CHANGES BETWEEN ACE-8.0.1 and ACE-8.0.2
2528
====================================================
2629

TAO/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ USER VISIBLE CHANGES BETWEEN TAO-4.0.2 and TAO-4.0.3
99
. When no preferred interfaces are provided we don't query for all IP interfaces
1010
as that could be slow
1111

12+
. Threads created by TAO_Thread_Per_Connection_Handler now have names
13+
1214
USER VISIBLE CHANGES BETWEEN TAO-4.0.1 and TAO-4.0.2
1315
====================================================
1416

TAO/tao/Acceptor_Impl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ TAO_Concurrency_Strategy<SVC_HANDLER>::activate_svc_handler (SVC_HANDLER *sh,
126126
-1);
127127

128128
result =
129-
tpch->activate (f->server_connection_thread_flags (),
130-
f->server_connection_thread_count ());
129+
tpch->activate_ch (f->server_connection_thread_flags (),
130+
f->server_connection_thread_count ());
131131
}
132132
else
133133
{

TAO/tao/Thread_Per_Connection_Handler.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ class TAO_Export TAO_Thread_Per_Connection_Handler : public ACE_Task_Base
5757
virtual int close (u_long);
5858

5959
private:
60-
/// Pointer to protocol specific code that does the bunch of the
61-
/// job.
60+
/// Pointer to protocol-specific code that does a bunch of the job.
6261
TAO_Connection_Handler *ch_;
6362
};
6463

0 commit comments

Comments
 (0)