Lines Matching refs:on
11 method, but only on fairly new versions of Windows.
13 Traditionally, polling has been done on windows using select(). However, this
14 call works a little differently than on POSIX platforms. Whereas on POSIX
15 platforms select() accepts a bitmask of FDs, on Windows select() accepts a
17 because sockets are NT kernel handles on Windows and thus are not allocated
19 POSIX poll(), making select() a viable option for polling on Windows.
28 interface on top of polling, but it is not really possible to build a
29 polling-like interface on top of IOCPs.
39 model, you make a read or write on a socket and an event is posted to the IOCP
42 so on.
73 Further, a cursory examination of code on GitHub seems to suggest that when
76 it uses IOCP internally on Windows.