Ben Pfaff

Results 53 issues of Ben Pfaff

TopicPartitionList is essentially a collection of TopicPartitionListElem. Ordinarily a Rust collection would implement FromIterator so that one could use `collect` to construct such a collection, but TopicPartitionList does not do...

Fixes: https://github.com/nix-rust/nix/issues/2663 ## What does this PR do Marks `nix::unstd::daemon` unsafe and documents why. ## Checklist: - [x] I have read `CONTRIBUTING.md` - [x] I have written necessary tests and...

Because libc's daemon() forks and then exits in the parent, only the thread that calls daemon() will survive in the child. Usually this means that one would only want to...