Alex Saveau

Results 435 comments of Alex Saveau

I'm not actively maintaining this repo anymore, but PRs are welcome.

That's a bummer, but I don't actively maintain this plugin anymore. That said, I'm happy to review PRs.

`wait` kind of counts, but doesn't have the same semantics because it will wait for any children rather than just the ones in the same process group.

Cool! Should I submit a PR or does this go into the 1.0 issue? Not sure how you're managing breaking changes...

> Also, the name IntoPathFd sounds like IntoRawFd but one one does an ownership transfer and the other doesn't. Good point, renamed to `AsPathFd`. > Accidentally passing cwd(), aka AT_FDCWD,...

> we already have a surprising number of types and traits that Rust programmers must know about to work with file descriptors at this abstraction level, and this would add...

> I'm going to take a little more time to think about this Sounds good! I also think I was too quick to dismiss the `Dir` idea: if `O_DIRECTORY` plays...

cc @asomers I had a bit of time to look at this today. The [posix standard](https://pubs.opengroup.org/onlinepubs/9699919799.2018edition/) specifies `O_DIRECTORY` with the following behavior: "If path resolves to a non-directory file, fail...

Did a bit more research and it does seem like we'd need something like `BorrowedDirFd` because I've seen code with the pattern of `open -> loop { recurse with opened...

> That said, it sounds like you're really motivated to do this experiment, and I don't wish to stand in the way :-). I'll be interested to hear how it...