-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add new sendfile flags for FreeBSD #988
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
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
@bors: r+ |
📌 Commit 96ee7bf has been approved by |
Add new sendfile flags for FreeBSD Two new constants for FreeBSD: * `SF_USER_READAHEAD` introduced in FreeBSD 12 [in this commit](freebsd/freebsd-src@b739d60#diff-b3f45d20f63d013e46f59f3f88a84d3d) (omitted from tests until FreeBSD 12 is stable) * `SF_NOCACHE` introduced in FreeBSD 11 [in this commit](freebsd/freebsd-src@aaa0977#diff-b3f45d20f63d013e46f59f3f88a84d3d)
💔 Test failed - status-travis |
|
@bors: retry Hm hopefully spurious! |
Add new sendfile flags for FreeBSD Two new constants for FreeBSD: * `SF_USER_READAHEAD` introduced in FreeBSD 12 [in this commit](freebsd/freebsd-src@b739d60#diff-b3f45d20f63d013e46f59f3f88a84d3d) (omitted from tests until FreeBSD 12 is stable) * `SF_NOCACHE` introduced in FreeBSD 11 [in this commit](freebsd/freebsd-src@aaa0977#diff-b3f45d20f63d013e46f59f3f88a84d3d)
OK, looks like the only mandatory failure now is the Android build which still needs help to auto-accept the license agreement. |
☀️ Test successful - status-appveyor, status-travis |
Two new constants for FreeBSD:
SF_USER_READAHEAD
introduced in FreeBSD 12 in this commit (omitted from tests until FreeBSD 12 is stable)SF_NOCACHE
introduced in FreeBSD 11 in this commit