Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-09 | Add extra traits for all types | Bryant Mairs | |
Derive Clone, Copy, Eq, Hash, and PartialEq for all types. Not all traits are supported by all types, which is why many are missing some. | |||
2018-07-03 | Make preadv take immutable slice of IoVecs, fixes #913 | Jakub OkoĊski | |
2018-04-18 | Support preadv/pwritev on BSDs | Andrew Morrow | |
2018-01-28 | Require Debug impls for all types | Bryant Mairs | |
2018-01-28 | Implement Copy/Clone for all types missing it | Bryant Mairs | |
2017-12-20 | Use backticks around types/functions in docs | Bryant Mairs | |
2017-12-20 | Remove unnecessary lifetime annotations | Bryant Mairs | |
2017-12-05 | Remove nix-test subcrate | Bryant Mairs | |
This was doing testing for errno constants and a few other types that is no longer necessary now that these types are all tested within the libc project itself. | |||
2017-12-04 | Stop reexporting `Errno` and its variants | Jonas Schievink | |
cc #664 (unsure if this is everything needed) | |||
2017-11-08 | Add process_vm_readv and process_vm_writev | Geoffrey Thomas | |
2017-07-17 | Remove preadv_pwritev feature in favor of conditional include | Bryant Mairs | |
2016-03-10 | uio: Use bindings from libc instead of our own | Kamal Marhubi | |
Refs https://github.com/nix-rust/nix/issues/264 | |||
2016-01-28 | Move errno::Result back to crate root | arcnmx | |
2016-01-28 | Errno::result() | arcnmx | |
2015-10-20 | Move a few bindings behind features | Carl Lerche | |
2015-07-27 | Make it compatible for Android. | Tim JIANG | |
* Fixed an unused_import error in `termios.rs` for Android. * Fixed undefined references to `preadv` and `pwritev` for Android - At least they don't exist from API level 3 to 21. * Fixed the uid > 0 and gid > 0 checks in `stat`'s tests - Running the tests by root is possible, especially when running on a rooted Android device. Those changes made rust-nix buildable (again) on Android. All the tests passed as well. | |||
2015-07-13 | Add support for preadv and pwritev to sys/uio on Linux. | Trip Volpe | |
2015-06-17 | Change pread/pwrite to take offset as a off_t. | Holger Rapp | |
This fixes compile for 32 bit systems like certain ARM | |||
2015-06-05 | Add pwrite and pread | Florian Hartwig | |
2015-05-28 | Remove std::os::unix::io::RawFd re-export | Carl Lerche | |
2015-03-24 | NixResult -> nix::Result; NixError -> nix::Error | Carl Lerche | |
2015-02-25 | Large cleanup, mostly of socket functions | Carl Lerche | |
2015-02-21 | Fix uio and add SockAddr conversions | Carl Lerche | |
2015-02-21 | Cleanup readv & writev + tests | Carl Lerche | |