3 Nov
2012
3 Nov
'12
11:20 a.m.
On 03/11/2012 9:22am, Sturla Molden wrote:
No, it does something completely different. It registers a callback function for a single event object and waits. We were talking about multiplexing a wait for more than 64 objects.
By using an appropriate callback you easily implement something like WaitForMultipleObjects() which does not have the 64 handle limit (without having to explicitly start any threads). More usefully if the callback posts a message to an IOCP then it lets you use the IOCP to wait on non-IO things. -- Richard