Skip to content

Commit b9f089b

Browse files
committed
Remove cfg attributes for Solaris
We never really supported Solaris, we pretended it implemented epoll, but it never did see tokio-rs#1152. As no one ever committed to being a maintainer for the port I'm removing it now with this commit. Instead replace it with illumuos on the CI, which we do support (as it supports epoll) and for which we do have maintainers.
1 parent 7d86108 commit b9f089b

13 files changed

+18
-41
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ targets = [
6262
"aarch64-linux-android",
6363
"x86_64-apple-darwin",
6464
"x86_64-pc-windows-msvc",
65-
"x86_64-pc-solaris",
6665
"x86_64-unknown-dragonfly",
6766
"x86_64-unknown-freebsd",
67+
"x86_64-unknown-illumos",
6868
"x86_64-unknown-linux-gnu",
6969
"x86_64-unknown-netbsd",
7070
"x86_64-unknown-openbsd",

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Targets available via Rustup that are supported.
2-
TARGETS ?= "aarch64-apple-ios" "aarch64-linux-android" "x86_64-apple-darwin" "x86_64-pc-windows-msvc" "x86_64-pc-solaris" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd"
2+
TARGETS ?= "aarch64-apple-ios" "aarch64-linux-android" "x86_64-apple-darwin" "x86_64-pc-windows-msvc" "x86_64-unknown-freebsd" "x86_64-unknown-illumos" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd"
33

44
test:
55
cargo test --all-features

ci/azure-cross-compile.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
vmImage: ubuntu-18.04
3131
target: x86_64-unknown-netbsd
3232

33-
Solaris:
33+
illumos:
3434
vmImage: ubuntu-18.04
35-
target: x86_64-pc-solaris
35+
target: x86_64-unknown-illumos
3636

3737
pool:
3838
vmImage: $(vmImage)

src/poll.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,12 @@ use std::{fmt, io};
196196
/// | Android | [epoll] |
197197
/// | DragonFly BSD | [kqueue] |
198198
/// | FreeBSD | [kqueue] |
199+
/// | iOS | [kqueue] |
200+
/// | illumos | [epoll] |
199201
/// | Linux | [epoll] |
200202
/// | NetBSD | [kqueue] |
201203
/// | OpenBSD | [kqueue] |
202-
/// | Solaris | [epoll] |
203-
/// | illumos | [epoll] |
204204
/// | Windows | [IOCP] |
205-
/// | iOS | [kqueue] |
206205
/// | macOS | [kqueue] |
207206
///
208207
/// On all supported platforms, socket operations are handled by using the
@@ -406,7 +405,7 @@ impl Registry {
406405
///
407406
/// # Arguments
408407
///
409-
/// `source: &S: event::Source`: This is the source of events that the
408+
/// `source: &mut S: event::Source`: This is the source of events that the
410409
/// `Poll` instance should monitor for readiness state changes.
411410
///
412411
/// `token: Token`: The caller picks a token to associate with the socket.

src/sys/unix/net.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ pub(crate) fn new_socket(domain: libc::c_int, socket_type: libc::c_int) -> io::R
4141
.map(|_| socket)
4242
});
4343

44-
// Darwin doesn't have SOCK_NONBLOCK or SOCK_CLOEXEC. Not sure about
45-
// Solaris, couldn't find anything online.
46-
#[cfg(any(target_os = "ios", target_os = "macos", target_os = "solaris"))]
44+
// Darwin doesn't have SOCK_NONBLOCK or SOCK_CLOEXEC.
45+
#[cfg(any(target_os = "ios", target_os = "macos"))]
4746
let socket = socket.and_then(|socket| {
4847
// For platforms that don't support flags in socket, we need to
4948
// set the flags ourselves.
@@ -124,7 +123,7 @@ pub(crate) fn socket_addr(addr: &SocketAddr) -> (SocketAddrCRepr, libc::socklen_
124123
target_os = "openbsd"
125124
))]
126125
sin6_len: 0,
127-
#[cfg(any(target_os = "solaris", target_os = "illumos"))]
126+
#[cfg(target_os = "illumos")]
128127
__sin6_src_id: 0,
129128
};
130129

src/sys/unix/pipe.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ pub fn new() -> io::Result<(Sender, Receiver)> {
162162
}
163163
}
164164

165-
#[cfg(any(target_os = "ios", target_os = "macos", target_os = "solaris"))]
165+
#[cfg(any(target_os = "ios", target_os = "macos"))]
166166
unsafe {
167167
// For platforms that don't have `pipe2(2)` we need to manually set the
168168
// correct flags on the file descriptor.
@@ -192,7 +192,6 @@ pub fn new() -> io::Result<(Sender, Receiver)> {
192192
target_os = "openbsd",
193193
target_os = "ios",
194194
target_os = "macos",
195-
target_os = "solaris",
196195
target_os = "illumos",
197196
)))]
198197
compile_error!("unsupported target for `mio::unix::pipe`");

src/sys/unix/selector/epoll.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ pub mod event {
222222
libc::EPOLLET,
223223
libc::EPOLLRDHUP,
224224
libc::EPOLLONESHOT,
225-
#[cfg(any(target_os = "linux", target_os = "solaris"))]
225+
#[cfg(target_os = "linux")]
226226
libc::EPOLLEXCLUSIVE,
227227
#[cfg(any(target_os = "android", target_os = "linux"))]
228228
libc::EPOLLWAKEUP,

src/sys/unix/selector/mod.rs

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
1-
#[cfg(any(
2-
target_os = "android",
3-
target_os = "illumos",
4-
target_os = "linux",
5-
target_os = "solaris"
6-
))]
1+
#[cfg(any(target_os = "android", target_os = "illumos", target_os = "linux"))]
72
mod epoll;
83

9-
#[cfg(any(
10-
target_os = "android",
11-
target_os = "illumos",
12-
target_os = "linux",
13-
target_os = "solaris"
14-
))]
4+
#[cfg(any(target_os = "android", target_os = "illumos", target_os = "linux"))]
155
pub(crate) use self::epoll::{event, Event, Events, Selector};
166

177
#[cfg(any(

src/sys/unix/tcp.rs

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ pub(crate) fn accept(listener: &net::TcpListener) -> io::Result<(net::TcpStream,
8888
all(target_arch = "x86", target_os = "android"),
8989
target_os = "ios",
9090
target_os = "macos",
91-
target_os = "solaris"
9291
))]
9392
let stream = {
9493
syscall!(accept(

src/sys/unix/uds/listener.rs

-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ pub(crate) fn accept(listener: &net::UnixListener) -> io::Result<(UnixStream, So
4242
target_os = "ios",
4343
target_os = "macos",
4444
target_os = "netbsd",
45-
target_os = "solaris",
4645
// Android x86's seccomp profile forbids calls to `accept4(2)`
4746
// See https://github.com/tokio-rs/mio/issues/1445 for details
4847
all(
@@ -65,7 +64,6 @@ pub(crate) fn accept(listener: &net::UnixListener) -> io::Result<(UnixStream, So
6564
target_os = "ios",
6665
target_os = "macos",
6766
target_os = "netbsd",
68-
target_os = "solaris",
6967
all(target_arch = "x86", target_os = "android")
7068
))]
7169
let socket = syscall!(accept(

src/sys/unix/uds/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,20 +77,20 @@ cfg_os_poll! {
7777
fn pair<T>(flags: libc::c_int) -> io::Result<(T, T)>
7878
where T: FromRawFd,
7979
{
80-
#[cfg(not(any(target_os = "ios", target_os = "macos", target_os = "solaris")))]
80+
#[cfg(not(any(target_os = "ios", target_os = "macos")))]
8181
let flags = flags | libc::SOCK_NONBLOCK | libc::SOCK_CLOEXEC;
8282

8383
let mut fds = [-1; 2];
8484
syscall!(socketpair(libc::AF_UNIX, flags, 0, fds.as_mut_ptr()))?;
8585
let pair = unsafe { (T::from_raw_fd(fds[0]), T::from_raw_fd(fds[1])) };
8686

87-
// Darwin and Solaris do not have SOCK_NONBLOCK or SOCK_CLOEXEC.
87+
// Darwin doesn't have SOCK_NONBLOCK or SOCK_CLOEXEC.
8888
//
8989
// In order to set those flags, additional `fcntl` sys calls must be
9090
// performed. If a `fnctl` fails after the sockets have been created,
9191
// the file descriptors will leak. Creating `pair` above ensures that if
9292
// there is an error, the file descriptors are closed.
93-
#[cfg(any(target_os = "ios", target_os = "macos", target_os = "solaris"))]
93+
#[cfg(any(target_os = "ios", target_os = "macos"))]
9494
{
9595
syscall!(fcntl(fds[0], libc::F_SETFL, libc::O_NONBLOCK))?;
9696
syscall!(fcntl(fds[0], libc::F_SETFD, libc::FD_CLOEXEC))?;

src/sys/unix/waker.rs

-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ pub use self::kqueue::Waker;
103103
target_os = "illumos",
104104
target_os = "netbsd",
105105
target_os = "openbsd",
106-
target_os = "solaris"
107106
))]
108107
mod pipe {
109108
use crate::sys::unix::Selector;
@@ -175,6 +174,5 @@ mod pipe {
175174
target_os = "illumos",
176175
target_os = "netbsd",
177176
target_os = "openbsd",
178-
target_os = "solaris"
179177
))]
180178
pub use self::pipe::Waker;

tests/tcp_stream.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -542,12 +542,7 @@ fn tcp_shutdown_client_read_close_event() {
542542
#[test]
543543
#[cfg_attr(windows, ignore = "fails; client write_closed events are not found")]
544544
#[cfg_attr(
545-
any(
546-
target_os = "android",
547-
target_os = "illumos",
548-
target_os = "linux",
549-
target_os = "solaris"
550-
),
545+
any(target_os = "android", target_os = "illumos", target_os = "linux"),
551546
ignore = "fails; client write_closed events are not found"
552547
)]
553548
fn tcp_shutdown_client_write_close_event() {

0 commit comments

Comments
 (0)