summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-02-19 23:13:37 +0000
committerStephen D. Huston <shuston@apache.org>2009-02-19 23:13:37 +0000
commit852a0bb10732a0e1093caa99dfe5803d6b8273b9 (patch)
treeaae479bd85283c6f3d4e00dc8c64ea2cf0d7db34
parent0acf3d1553b399a2b5d209232a2d8b32f86abc42 (diff)
downloadqpid-python-852a0bb10732a0e1093caa99dfe5803d6b8273b9.tar.gz
Tweaks
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/win-pollable-condition@746052 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/sys/windows/PollableCondition.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/sys/windows/PollableCondition.cpp b/qpid/cpp/src/qpid/sys/windows/PollableCondition.cpp
index 0fe4d5eeda..ed0f7c3917 100644
--- a/qpid/cpp/src/qpid/sys/windows/PollableCondition.cpp
+++ b/qpid/cpp/src/qpid/sys/windows/PollableCondition.cpp
@@ -76,6 +76,8 @@ void PollableConditionPrivate::poke()
if (!armed)
return;
+ // addFd will queue a completion for the IOCP; when it's handled, a
+ // poller thread will call back to dispatch() below.
PollerHandle ph(*this);
poller->addFd(ph, Poller::INPUT);
}