diff options
author | Steven Engler <opara@cs.georgetown.edu> | 2023-04-25 15:46:46 -0400 |
---|---|---|
committer | Steven Engler <opara@cs.georgetown.edu> | 2023-04-25 15:46:46 -0400 |
commit | 4e1f0e1207de2693885b147356675f73263aaa8b (patch) | |
tree | f7af83a6e5825abcfd87c5acf13f8ebb96bb56ca | |
parent | 3be2573919f7898dfacbc17ede2e23743c804bc8 (diff) | |
download | rust-libc-4e1f0e1207de2693885b147356675f73263aaa8b.tar.gz |
Removed `MSG_WAITFORONE` from illumos
-rw-r--r-- | src/unix/solarish/illumos.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/unix/solarish/illumos.rs b/src/unix/solarish/illumos.rs index 81a0ad6353..404f013da2 100644 --- a/src/unix/solarish/illumos.rs +++ b/src/unix/solarish/illumos.rs @@ -33,8 +33,6 @@ pub const TCP_KEEPCNT: ::c_int = 35; pub const TCP_KEEPINTVL: ::c_int = 36; pub const TCP_CONGESTION: ::c_int = 37; -pub const MSG_WAITFORONE: ::c_int = 0x80000; - // These constants are correct for 64-bit programs or 32-bit programs that are // not using large-file mode. If Rust ever supports anything other than 64-bit // compilation on illumos, this may require adjustment: |