浏览代码

Do not export phy::wait on non-Unix platforms

Michal Podhradsky 7 年之前
父节点
当前提交
a3bd4a9000
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/phy/mod.rs

+ 2 - 2
src/phy/mod.rs

@@ -87,7 +87,7 @@ impl<'a> phy::TxToken for StmPhyTxToken<'a> {
 use Result;
 use Result;
 use time::Instant;
 use time::Instant;
 
 
-#[cfg(any(feature = "phy-raw_socket", feature = "phy-tap_interface"))]
+#[cfg(all(any(feature = "phy-raw_socket", feature = "phy-tap_interface"), unix))]
 mod sys;
 mod sys;
 
 
 mod tracer;
 mod tracer;
@@ -100,7 +100,7 @@ mod raw_socket;
 #[cfg(all(feature = "phy-tap_interface", target_os = "linux"))]
 #[cfg(all(feature = "phy-tap_interface", target_os = "linux"))]
 mod tap_interface;
 mod tap_interface;
 
 
-#[cfg(any(feature = "phy-raw_socket", feature = "phy-tap_interface"))]
+#[cfg(all(any(feature = "phy-raw_socket", feature = "phy-tap_interface"), unix))]
 pub use self::sys::wait;
 pub use self::sys::wait;
 
 
 pub use self::tracer::Tracer;
 pub use self::tracer::Tracer;