summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
commit364c465628189a4f3dee6eac54ff48825c48e681 (patch)
treea7d51101d0fdfef43601b48965c2935059e617b6 /cpp/src/Ice/ThreadPool.cpp
parentcomments (diff)
downloadice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2
ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz
ice-364c465628189a4f3dee6eac54ff48825c48e681.zip
removed spaces
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index dbcc65a2e6a..467bd0662ff 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -143,7 +143,7 @@ IceInternal::ThreadPool::ThreadPool(const InstancePtr& instance, bool server) :
_threads.push_back(thread->start());
}
}
- catch (const IceUtil::Exception& ex)
+ catch(const IceUtil::Exception& ex)
{
{
Error out(_instance->logger());
@@ -498,11 +498,11 @@ IceInternal::ThreadPool::run()
{
read(handler);
}
- catch (const TimeoutException&) // Expected.
+ catch(const TimeoutException&) // Expected.
{
goto repeatSelect;
}
- catch (const LocalException& ex)
+ catch(const LocalException& ex)
{
handler->exception(ex);
goto repeatSelect;
@@ -586,7 +586,7 @@ IceInternal::ThreadPool::EventHandlerThread::run()
{
_pool->run();
}
- catch (const Exception& ex)
+ catch(const Exception& ex)
{
Error out(_pool->_instance->logger());
out << "exception in thread pool:\n" << ex;