diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-18 07:14:51 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-18 07:14:51 +0000 |
commit | 48fb0e4fbb09a1c6558ac177f80ed68c86eb9329 (patch) | |
tree | 041cf8166693141147c42a3cea32002f39a747d7 /cpp/src/Ice/CommunicatorI.cpp | |
parent | thread-safe shutdown (diff) | |
download | ice-48fb0e4fbb09a1c6558ac177f80ed68c86eb9329.tar.bz2 ice-48fb0e4fbb09a1c6558ac177f80ed68c86eb9329.tar.xz ice-48fb0e4fbb09a1c6558ac177f80ed68c86eb9329.zip |
shutdown fixes
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index 85db7a08a7a..eea0778af89 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -28,18 +28,11 @@ Ice::CommunicatorI::destroy() { JTCSyncT<JTCRecursiveMutex> sync(*this); - shutdown(); - if (_instance) { _instance->destroy(); _instance = 0; } - - // - // Don't set _threadPool to null here! See the comments in the - // header file. - // } void |