diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2008-05-09 02:00:04 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2008-05-09 02:00:04 +0000 |
| commit | 2d4d4a1425d3f4e189868d36a0cc9fbd4bec4756 (patch) | |
| tree | 7413a08c12494e5c5551b3f09ad35f29804d66a3 /cpp/src/qpid/sys/Dispatcher.cpp | |
| parent | 266fbd3880a49ea4f6a221231027408a32033687 (diff) | |
| download | qpid-python-2d4d4a1425d3f4e189868d36a0cc9fbd4bec4756.tar.gz | |
QPID-1040: Patch from Ted Ross: Asynchronous Connector
Code to allow non-blocking connection of new sockets
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@654666 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/Dispatcher.cpp')
| -rw-r--r-- | cpp/src/qpid/sys/Dispatcher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/Dispatcher.cpp b/cpp/src/qpid/sys/Dispatcher.cpp index c55f808b42..1df88ce0ae 100644 --- a/cpp/src/qpid/sys/Dispatcher.cpp +++ b/cpp/src/qpid/sys/Dispatcher.cpp @@ -322,8 +322,8 @@ void DispatchHandle::stopWatch() { // is to ensure that the lock is released before // we do the delete void DispatchHandle::doDelete() { - // Ensure that we're no longer watching anything - stopWatch(); + // Ensure that we're no longer watching anything + stopWatch(); // If we're in the middle of a callback defer the delete { |
