]> git.proxmox.com Git - rustc.git/blobdiff - vendor/rustix/src/backend/libc/event/poll_fd.rs
New upstream version 1.73.0+dfsg1
[rustc.git] / vendor / rustix / src / backend / libc / event / poll_fd.rs
index 49a6d1126a4eb73b960844ed49cd9cc1d08dc813..a06812aaac3dea1b9e2496687058b2e66e88731c 100644 (file)
@@ -26,18 +26,20 @@ bitflags! {
         /// `POLLRDNORM`
         const RDNORM = c::POLLRDNORM;
         /// `POLLWRNORM`
+        #[cfg(not(target_os = "l4re"))]
         const WRNORM = c::POLLWRNORM;
         /// `POLLRDBAND`
-        #[cfg(not(target_os = "wasi"))]
+        #[cfg(not(any(target_os = "l4re", target_os = "wasi")))]
         const RDBAND = c::POLLRDBAND;
         /// `POLLWRBAND`
-        #[cfg(not(target_os = "wasi"))]
+        #[cfg(not(any(target_os = "l4re", target_os = "wasi")))]
         const WRBAND = c::POLLWRBAND;
         /// `POLLERR`
         const ERR = c::POLLERR;
         /// `POLLHUP`
         const HUP = c::POLLHUP;
         /// `POLLNVAL`
+        #[cfg(not(target_os = "espidf"))]
         const NVAL = c::POLLNVAL;
         /// `POLLRDHUP`
         #[cfg(all(