diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-24 13:55:37 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-24 13:55:37 -0230 |
commit | b7781c854fc8dc9c02f8abe363c46b8f4f28e859 (patch) | |
tree | 4915ec5588dc04bc8f7f99740d1062e4a1898296 /cpp/src/Ice/ThreadPool.cpp | |
parent | Bug 3811 - unsubstitued verion strings in READMES (diff) | |
download | ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.tar.bz2 ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.tar.xz ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.zip |
Bug 2812 - add abilty to name thread
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index 1d2352d2439..11c08dc63a9 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -767,6 +767,7 @@ IceInternal::ThreadPool::read(const EventHandlerPtr& handler) } IceInternal::ThreadPool::EventHandlerThread::EventHandlerThread(const ThreadPoolPtr& pool) : + Thread(pool->_prefix + " thread"), _pool(pool) { } |