-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for polling HANDLEs #17
Comments
Would be nice, but (at least in older windows versions) there's no reasonable way to do it. I noticed that windows 10 now has the 'NtAssociateWaitCompletionPacket' syscall; if that does what the name suggests that might be an option to look into. I currently have very little time to further develop wepoll, so if you want to take a stab at it I'd suggest you fork it and/or send a PR. |
With |
necroposting, but might be useful for time travelers: alll WaitForObject(s) APIs in win32 (i.e. winapi) have a limitation of maximum 64 handles to be waited on. that does not scale, not even close to what this library aims to support |
Interesting; how would this work? Do you just call |
HANDLE
s are used for waitable timers, named pipes, various synchronization primitives, event objects and various other "pollable" things on Windows. Would be nice to be able to poll them in addition toSOCKET
.The text was updated successfully, but these errors were encountered: