about summary refs log tree commit diff
path: root/library/std/src/sys/unix/ext/net/mod.rs
diff options
context:
space:
mode:
authorLinkTed <LinkTed@users.noreply.github.com>2020-09-20 14:44:03 +0200
committerLinkTed <LinkTed@users.noreply.github.com>2020-10-10 15:19:12 +0200
commit7b476d87fbdd678f0a580f90193938e787d0ce99 (patch)
tree26e571781e8e24fc64f7971a63fdb66773f3c1a4 /library/std/src/sys/unix/ext/net/mod.rs
parentdb902bca3a2dfeb449fc42149575d476c85d7fed (diff)
downloadrust-7b476d87fbdd678f0a580f90193938e787d0ce99.tar.gz
rust-7b476d87fbdd678f0a580f90193938e787d0ce99.zip
Remove `target_os`, which does not have `MSG_CMSG_CLOEXEC` constant in `libc`
Diffstat (limited to 'library/std/src/sys/unix/ext/net/mod.rs')
-rw-r--r--library/std/src/sys/unix/ext/net/mod.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/library/std/src/sys/unix/ext/net/mod.rs b/library/std/src/sys/unix/ext/net/mod.rs
index 1c792b251b6..366ee7edf2a 100644
--- a/library/std/src/sys/unix/ext/net/mod.rs
+++ b/library/std/src/sys/unix/ext/net/mod.rs
@@ -8,15 +8,9 @@ mod addr;
     target_os = "dragonfly",
     target_os = "emscripten",
     target_os = "freebsd",
-    target_os = "fuchsia",
-    target_os = "haiku",
-    target_os = "illumos",
-    target_os = "ios",
     target_os = "linux",
-    target_os = "macos",
     target_os = "netbsd",
     target_os = "openbsd",
-    target_os = "solaris",
     target_env = "uclibc",
 )))]
 #[cfg(any(
@@ -25,15 +19,9 @@ mod addr;
     target_os = "dragonfly",
     target_os = "emscripten",
     target_os = "freebsd",
-    target_os = "fuchsia",
-    target_os = "haiku",
-    target_os = "illumos",
-    target_os = "ios",
     target_os = "linux",
-    target_os = "macos",
     target_os = "netbsd",
     target_os = "openbsd",
-    target_os = "solaris",
     target_env = "uclibc",
 ))]
 mod ancillary;
@@ -51,15 +39,9 @@ pub use self::addr::*;
     target_os = "dragonfly",
     target_os = "emscripten",
     target_os = "freebsd",
-    target_os = "fuchsia",
-    target_os = "haiku",
-    target_os = "illumos",
-    target_os = "ios",
     target_os = "linux",
-    target_os = "macos",
     target_os = "netbsd",
     target_os = "openbsd",
-    target_os = "solaris",
     target_env = "uclibc",
 ))]
 #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]