We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fff5dbe + 82fdf04 commit 0b758afCopy full SHA for 0b758af
src/unix/redox/mod.rs
@@ -528,6 +528,10 @@ pub const POLLOUT: ::c_short = 0x004;
528
pub const POLLERR: ::c_short = 0x008;
529
pub const POLLHUP: ::c_short = 0x010;
530
pub const POLLNVAL: ::c_short = 0x020;
531
+pub const POLLRDNORM: ::c_short = 0x040;
532
+pub const POLLRDBAND: ::c_short = 0x080;
533
+pub const POLLWRNORM: ::c_short = 0x100;
534
+pub const POLLWRBAND: ::c_short = 0x200;
535
536
// pthread.h
537
pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
0 commit comments