-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Implement inheriting more than 3 file descriptors for UNIX Commands #17605
Conversation
* This allows creating sub-processes through the std::io::process::Command struct with file descriptors beyond stdin/stdout/stderr * Support is still missing under Windows
We really need to switch to |
I have investigated |
@ipetkov thanks for the patch! I'll try to take a closer look tomorrow. I'm pretty wary of implementing support for a feature such as this while ignoring windows, especially without an expected frame of time to have it implemented. Would you be willing to implement the windows side of the API as well? |
@alexcrichton I'd be willing to take a stab at implementing the Windows side of the API, though I don't have much experience with the WINAPI itself, and I'm not sure what is the correct way to go about implementing this. After a few Google searches it looks like UpdateProcThreadAttribute function might be able to accomplish setting the child's file descriptors in the right order (though I'm not sure how it would work for leaving holes without opening handles to Alternatively the files to inherit could be shuffled around via |
Most of my inspiration for these apis came from libuv's implementation, and you can also take a look at their windows implementation of more than 3 stdio file descriptors. That being said, now that I look at it, it looks significantly complicated... We may be able to implement a somewhat stripped down version to get the tests passing and then we can add more features later on. |
Closing out of inactivity, and I think that with the runtime removal this functionality is likely to just disappear as it's unimplemented entirely right now. It would of course be nice to add support for this, but we'll need to figure out a story for windows at the same time as well. |
Set `RUSTC_TOOLCHAIN` for runnables With this the client doesn't necessarily need to guess the sysroot anymore
std::io::process::Command
with file descriptors beyond stdio