File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ pub mod mqueue;
62
62
#[ cfg( not( target_os = "redox" ) ) ]
63
63
pub mod net;
64
64
#[ deny( missing_docs) ]
65
- #[ cfg( not( target_os = "redox" ) ) ]
66
65
pub mod poll;
67
66
#[ deny( missing_docs) ]
68
67
#[ cfg( not( target_os = "redox" ) ) ]
Original file line number Diff line number Diff line change @@ -64,12 +64,16 @@ libc_bitflags! {
64
64
/// `O_NONBLOCK` is set).
65
65
POLLOUT ;
66
66
/// Equivalent to [`POLLIN`](constant.POLLIN.html)
67
+ #[ cfg( not( target_os = "redox" ) ) ]
67
68
POLLRDNORM ;
69
+ #[ cfg( not( target_os = "redox" ) ) ]
68
70
/// Equivalent to [`POLLOUT`](constant.POLLOUT.html)
69
71
POLLWRNORM ;
70
72
/// Priority band data can be read (generally unused on Linux).
73
+ #[ cfg( not( target_os = "redox" ) ) ]
71
74
POLLRDBAND ;
72
75
/// Priority data may be written.
76
+ #[ cfg( not( target_os = "redox" ) ) ]
73
77
POLLWRBAND ;
74
78
/// Error condition (only returned in
75
79
/// [`PollFd::revents`](struct.PollFd.html#method.revents);
You can’t perform that action at this time.
0 commit comments