diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-14 22:07:51 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-14 22:07:51 +0000 |
commit | e3391e10721a7bbe8c867d1c798fcf6d24a67308 (patch) | |
tree | dbab6b044338c6e7a920eb72e8c9d3b4cbd07f56 /cpp/src/Ice/ThreadPool.cpp | |
parent | fixes (diff) | |
download | ice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.tar.bz2 ice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.tar.xz ice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.zip |
win and other fixes
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index dbc24fa904c..533a7e8e61b 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -462,7 +462,7 @@ IceInternal::ThreadPool::run() goto repeatSelect; } } - catch (const LocalException& ex) + catch (const LocalException&) { // Ignore exeptions. } @@ -564,7 +564,7 @@ IceInternal::ThreadPool::EventHandlerThread::run() { _pool->run(); } - catch (const LocalException& ex) + catch (const Exception& ex) { ostringstream s; s << "exception in thread pool:\n" << ex; @@ -573,7 +573,7 @@ IceInternal::ThreadPool::EventHandlerThread::run() catch (const JTCException& ex) { ostringstream s; - s << "exception in thread pool:\n" << ex; + s << "JThreads/C++ exception in thread pool:\n" << ex; _pool->_instance->logger()->error(s.str()); } catch (...) |