1
1
#[ cfg( all(
2
2
unix,
3
3
not( mio_unsupported_force_poll_poll) ,
4
- not( any( target_os = "espidf" , target_os = "solaris" , target_os = "vita" ) ) ,
4
+ not( any( target_os = "espidf" , target_os = "hermit" , target_os = " solaris", target_os = "vita" ) ) ,
5
5
) ) ]
6
6
use std:: os:: unix:: io:: { AsRawFd , RawFd } ;
7
7
#[ cfg( all( debug_assertions, not( target_os = "wasi" ) ) ) ]
@@ -430,7 +430,7 @@ impl Poll {
430
430
#[ cfg( all(
431
431
unix,
432
432
not( mio_unsupported_force_poll_poll) ,
433
- not( any( target_os = "espidf" , target_os = "solaris" , target_os = "vita" ) ) ,
433
+ not( any( target_os = "espidf" , target_os = "hermit" , target_os = " solaris", target_os = "vita" ) ) ,
434
434
) ) ]
435
435
impl AsRawFd for Poll {
436
436
fn as_raw_fd ( & self ) -> RawFd {
@@ -721,7 +721,7 @@ impl fmt::Debug for Registry {
721
721
#[ cfg( all(
722
722
unix,
723
723
not( mio_unsupported_force_poll_poll) ,
724
- not( any( target_os = "espidf" , target_os = "solaris" , target_os = "vita" ) ) ,
724
+ not( any( target_os = "espidf" , target_os = "hermit" , target_os = " solaris", target_os = "vita" ) ) ,
725
725
) ) ]
726
726
impl AsRawFd for Registry {
727
727
fn as_raw_fd ( & self ) -> RawFd {
@@ -733,7 +733,7 @@ cfg_os_poll! {
733
733
#[ cfg( all(
734
734
unix,
735
735
not( mio_unsupported_force_poll_poll) ,
736
- not( any( target_os = "espidf" , target_os = "solaris" , target_os = "vita" ) ) ,
736
+ not( any( target_os = "espidf" , target_os = "hermit" , target_os = " solaris", target_os = "vita" ) ) ,
737
737
) ) ]
738
738
#[ test]
739
739
pub fn as_raw_fd( ) {
0 commit comments