-
Notifications
You must be signed in to change notification settings - Fork 50
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
Async doesn't work on Windows #131
Comments
@bung87, if these aren't fixed soon I'll have to revert your changes.. |
I dont understand , the issue seems like a question, my pr does work on windows . I dont see any reason async support cause code revert. |
What I meant is async doesn't work on windows like other platforms, #121 was fixed by not going async on windows. Lines 665 to 673 in 7b28d0c
This issue is more of a continuation to #121 to discuss how async can be implemented on windows. So I don't see how #132 fixes this. |
oh, sorry! it's fix #130, I understand the problem you want to resolve. I've investigate one or two years ago , this is because std async libs use iocp , but it will not work on stdio, see https://stackoverflow.com/questions/55619555/win32-impossible-to-use-iocp-with-stdin-handle , I'v read one blog post by tokio explain more details, but I can't find the link now. |
yeah, it's that post. |
After #125 fix of #121, async doesn't work on Windows. Isn't there a way to make it work ?
The text was updated successfully, but these errors were encountered: