We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff5dbe commit 82fdf04Copy full SHA for 82fdf04
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