diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-01-02 14:44:47 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-01-02 14:44:47 +0000 |
commit | 2540d5e661385222d73b1b5650e791a8e9b34fce (patch) | |
tree | 80c6f006fadab36e3478db6c808e32f0ed782639 /cpp/src | |
parent | Added missing space (diff) | |
download | ice-2540d5e661385222d73b1b5650e791a8e9b34fce.tar.bz2 ice-2540d5e661385222d73b1b5650e791a8e9b34fce.tar.xz ice-2540d5e661385222d73b1b5650e791a8e9b34fce.zip |
Fixed bug 1596
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceUtil/CtrlCHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/CtrlCHandler.cpp b/cpp/src/IceUtil/CtrlCHandler.cpp index 63dd93a30fd..1f09e259747 100644 --- a/cpp/src/IceUtil/CtrlCHandler.cpp +++ b/cpp/src/IceUtil/CtrlCHandler.cpp @@ -200,7 +200,7 @@ CtrlCHandler::~CtrlCHandler() // comment in sigwaitThread // rc = pthread_kill(_tid, SIGTERM); - assert(rc == 0); + //assert(rc == 0); For some reaosns, this assert is sometime triggered #endif void* status = 0; rc = pthread_join(_tid, &status); |