summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/windows/PollableCondition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/sys/windows/PollableCondition.cpp')
-rw-r--r--cpp/src/qpid/sys/windows/PollableCondition.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/sys/windows/PollableCondition.cpp b/cpp/src/qpid/sys/windows/PollableCondition.cpp
index ed0f7c3917..82913934d6 100644
--- a/cpp/src/qpid/sys/windows/PollableCondition.cpp
+++ b/cpp/src/qpid/sys/windows/PollableCondition.cpp
@@ -76,15 +76,15 @@ void PollableConditionPrivate::poke()
if (!armed)
return;
- // addFd will queue a completion for the IOCP; when it's handled, a
+ // monitorHandle 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);
+ poller->monitorHandle(ph, Poller::INPUT);
}
void PollableConditionPrivate::dispatch(AsynchIoResult *result)
{
- delete result; // Poller::addFd() allocates this
+ delete result; // Poller::monitorHandle() allocates this
cb(parent);
}