-
Notifications
You must be signed in to change notification settings - Fork 67
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
Support for Handles on Windows #14
Comments
Similar to fds on UNIX this has the problem that not all IMHO this would be useful to have. |
To add some more information here, this is not just named pipes but also for example: waitable timers (basically Windows' |
|
I think we could eventually add support for |
Makes sense and it's would only require internal changes anyway, not API-wise :) |
This isn't really a deal-breaker, but I was looking to play with reading Physical Disks using Unfortunately, because there's no support for |
Usage as you describe is currently blocked on smol-rs/polling#97. But, waitable handles like processes can be used in #152 |
Windows has two kinds file descriptors:
Handle
andSocket
. It seemssmol::Async
currently only supportSocket
but not yetHandle
, which is needed to abstract over APIs such as named pipes. What is the plan forHandle
-based APIs in smol?The text was updated successfully, but these errors were encountered: