diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-05-29 03:54:44 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-05-29 03:54:44 +0000 |
commit | badb45113ba98d46a28b54c5f9a9ff122774976c (patch) | |
tree | 1e92ceebfae83013c3bb216041315d87470f5539 /CHANGELOG.md | |
parent | b87d45b349485cf2ecf7414af70133bd8e91c4ab (diff) | |
parent | 325c43c6d5b5b8945dd8bee3575500887923b2cf (diff) | |
download | nix-badb45113ba98d46a28b54c5f9a9ff122774976c.zip |
Merge #901
901: Implement sendfile on FreeBSD and Darwin r=Susurrus a=morrowa
This PR exposes the `sendfile` system call on libc's supported BSD-likes:
* FreeBSD
* Darwin (macOS/iOS)
DragonFly could be supported in the future, but I was unable to build rustc to test.
Note that NetBSD has no equivalent system call.
Co-authored-by: Andrew Morrow <andrew.d.morrow@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 350d18f5..39f78ddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added +- Added `sendfile` on FreeBSD and Darwin. + ([#901](https://github.com/nix-rust/nix/pull/901)) - Added `pselect` ([#894](https://github.com/nix-rust/nix/pull/894)) - Exposed `preadv` and `pwritev` on the BSDs. |