diff options
author | Marc Laukien <marc@zeroc.com> | 2004-10-25 22:26:08 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-10-25 22:26:08 +0000 |
commit | 32775e740627ff289197dab5e457734c4c0847ba (patch) | |
tree | 157ebb09a7b66772858cb5505dcd483316567b03 /cpp/src/Ice/ThreadPool.h | |
parent | using Make.rules instead of distutils (diff) | |
download | ice-32775e740627ff289197dab5e457734c4c0847ba.tar.bz2 ice-32775e740627ff289197dab5e457734c4c0847ba.tar.xz ice-32775e740627ff289197dab5e457734c4c0847ba.zip |
started with thread per client
Diffstat (limited to 'cpp/src/Ice/ThreadPool.h')
-rw-r--r-- | cpp/src/Ice/ThreadPool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ThreadPool.h b/cpp/src/Ice/ThreadPool.h index 53b5f96b588..9ffc5102855 100644 --- a/cpp/src/Ice/ThreadPool.h +++ b/cpp/src/Ice/ThreadPool.h @@ -44,6 +44,8 @@ public: void unregister(SOCKET); void promoteFollower(); void joinWithAllThreads(); + + std::string prefix() const; private: @@ -89,8 +91,6 @@ private: const size_t _stackSize; - const int _messageSizeMax; - std::vector<IceUtil::ThreadControl> _threads; // Control for all threads, running or not. int _running; // Number of running threads. int _inUse; // Number of threads that are currently in use. |