summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morrow <andrew.d.morrow@gmail.com>2018-05-16 22:26:14 -0600
committerAndrew Morrow <andrew.d.morrow@gmail.com>2018-05-17 08:54:53 -0600
commit96ee7bf81cfdc3118e8ed4921ce64630a4dbfc0d (patch)
tree738c58d5f48587fe16ea88a0d4d281517b8513e4
parentd0a57265999c78aa56c0202d97911e16e43baea3 (diff)
downloadrust-libc-96ee7bf81cfdc3118e8ed4921ce64630a4dbfc0d.tar.gz
Add new sendfile flags for FreeBSD
-rw-r--r--libc-test/build.rs3
-rw-r--r--src/unix/bsd/freebsdlike/freebsd/mod.rs2
2 files changed, 5 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 1262eea1bd..82491bbfdc 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -521,6 +521,9 @@ fn main() {
"EVFILT_PROCDESC" | "EVFILT_SENDFILE" | "EVFILT_EMPTY" |
"PD_CLOEXEC" | "PD_ALLOWED_AT_FORK" if freebsd => true,
+ // These constants were added in FreeBSD 12
+ "SF_USER_READAHEAD" if freebsd => true,
+
// These OSX constants are removed in Sierra.
// https://developer.apple.com/library/content/releasenotes/General/APIDiffsMacOS10_12/Swift/Darwin.html
"KERN_KDENABLE_BG_TRACE" if apple => true,
diff --git a/src/unix/bsd/freebsdlike/freebsd/mod.rs b/src/unix/bsd/freebsdlike/freebsd/mod.rs
index a2a6d69375..def81dfe2e 100644
--- a/src/unix/bsd/freebsdlike/freebsd/mod.rs
+++ b/src/unix/bsd/freebsdlike/freebsd/mod.rs
@@ -168,6 +168,8 @@ pub const SIGSTKSZ: ::size_t = 34816;
pub const SF_NODISKIO: ::c_int = 0x00000001;
pub const SF_MNOWAIT: ::c_int = 0x00000002;
pub const SF_SYNC: ::c_int = 0x00000004;
+pub const SF_USER_READAHEAD: ::c_int = 0x00000008;
+pub const SF_NOCACHE: ::c_int = 0x00000010;
pub const O_CLOEXEC: ::c_int = 0x00100000;
pub const O_DIRECTORY: ::c_int = 0x00020000;
pub const O_EXEC: ::c_int = 0x00040000;