summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Zellweger <gzellweger@vmware.com>2018-11-21 17:01:12 -0800
committerGerd Zellweger <gzellweger@vmware.com>2018-11-21 17:03:34 -0800
commit9e626828b3e2ba750bf947e14f0f42159d85eef9 (patch)
tree4304b53e9e6c421ed97bf4ac38f574c55c98758a
parent2f83a7a511a4191466046041a488f07f8c1bfc50 (diff)
downloadrust-libc-9e626828b3e2ba750bf947e14f0f42159d85eef9.tar.gz
Remove some SOF_TIMESTAMPING_ options not supported with musl.
-rw-r--r--src/unix/notbsd/linux/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs
index f839bd229b..d837a13b87 100644
--- a/src/unix/notbsd/linux/mod.rs
+++ b/src/unix/notbsd/linux/mod.rs
@@ -1687,17 +1687,6 @@ pub const SOF_TIMESTAMPING_RX_SOFTWARE: ::c_uint = 1 << 3;
pub const SOF_TIMESTAMPING_SOFTWARE: ::c_uint = 1 << 4;
pub const SOF_TIMESTAMPING_SYS_HARDWARE: ::c_uint = 1 << 5;
pub const SOF_TIMESTAMPING_RAW_HARDWARE: ::c_uint = 1 << 6;
-pub const SOF_TIMESTAMPING_OPT_ID: ::c_uint = 1 << 7;
-pub const SOF_TIMESTAMPING_TX_SCHED: ::c_uint = 1 << 8;
-pub const SOF_TIMESTAMPING_TX_ACK: ::c_uint = 1 << 9;
-pub const SOF_TIMESTAMPING_OPT_CMSG: ::c_uint = 1 << 10;
-pub const SOF_TIMESTAMPING_OPT_TSONLY: ::c_uint = 1 << 11;
-pub const SOF_TIMESTAMPING_OPT_STATS: ::c_uint = 1 << 12;
-pub const SOF_TIMESTAMPING_OPT_PKTINFO: ::c_uint = 1 << 13;
-pub const SOF_TIMESTAMPING_OPT_TX_SWHW: ::c_uint = 1 << 14;
-pub const SOF_TIMESTAMPING_LAST: ::c_uint = SOF_TIMESTAMPING_OPT_TX_SWHW;
-pub const SOF_TIMESTAMPING_MASK: ::c_uint = (SOF_TIMESTAMPING_LAST - 1)
- | SOF_TIMESTAMPING_LAST;
f! {
pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () {