summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-03-10 07:04:26 +0000
committerMichi Henning <michi@zeroc.com>2003-03-10 07:04:26 +0000
commitaf8d634e95fcd6fa2b41f6853ff98c6875fafca6 (patch)
treefb70b0e77885c0ec2962013fe793cb1f432cc997 /cpp/src/Ice/ThreadPool.cpp
parentUpdated incorrect doc for -v -e option for the server side for UDP (diff)
downloadice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.tar.bz2
ice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.tar.xz
ice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.zip
Added missing member initializers for VC++ .NET.
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index 855cdaa622d..ed8873e560a 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -33,6 +33,9 @@ void IceInternal::decRef(ThreadPool* p) { p->__decRef(); }
IceInternal::ThreadPool::ThreadPool(const InstancePtr& instance, const string& prefix, int timeout) :
_instance(instance),
_destroyed(false),
+ _size(0),
+ _sizeMax(0),
+ _sizeWarn(0),
_prefix(prefix),
_inUse(0),
_lastFd(INVALID_SOCKET),