diff options
author | Marc Laukien <marc@zeroc.com> | 2002-02-12 04:53:45 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-02-12 04:53:45 +0000 |
commit | 0b54d19c46f786cc90227ce0e3a777334ef8d35e (patch) | |
tree | 5551c772a652659dd4a5183ca559087d23562c1c /cpp | |
parent | initial check-in (diff) | |
download | ice-0b54d19c46f786cc90227ce0e3a777334ef8d35e.tar.bz2 ice-0b54d19c46f786cc90227ce0e3a777334ef8d35e.tar.xz ice-0b54d19c46f786cc90227ce0e3a777334ef8d35e.zip |
made some inline ops non-inline; added comments and TODOs
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index 776fa258ce8..c3c6aa4e35d 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -528,6 +528,12 @@ IceInternal::ThreadPool::read(const EventHandlerPtr& handler) } void +IceInternal::ThreadPool::EventHandlerThread::EventHandlerThread(const ThreadPoolPtr& pool) : + _pool(pool) +{ +} + +void IceInternal::ThreadPool::EventHandlerThread::run() { try |