We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf5162 commit 07cf742Copy full SHA for 07cf742
libctru/include/poll.h
@@ -1,11 +1,13 @@
1
#pragma once
2
3
-#define POLLIN 0x01
4
-#define POLLPRI 0x02
5
-#define POLLHUP 0x04 // unknown ???
6
-#define POLLERR 0x08 // probably
7
-#define POLLOUT 0x10
8
-#define POLLNVAL 0x20
+#define POLLIN 0x01
+#define POLLPRI 0x02
+#define POLLWRNORM 0x08
+#define POLLWRBAND 0x10
+#define POLLNVAL 0x20
+#define POLLHUP 0x00 // Unknown?
9
+#define POLLERR 0x00 // Unknown?
10
+#define POLLOUT POLLWRNORM
11
12
typedef unsigned int nfds_t;
13
0 commit comments