This commit is contained in:
Daniel López Guimaraes 2025-01-20 20:42:38 +01:00 committed by GitHub
commit ad7c06a660
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,10 +2,12 @@
#define POLLIN 0x01 #define POLLIN 0x01
#define POLLPRI 0x02 #define POLLPRI 0x02
#define POLLHUP 0x04 // unknown ??? #define POLLWRNORM 0x08
#define POLLERR 0x08 // probably #define POLLWRBAND 0x10
#define POLLOUT 0x10
#define POLLNVAL 0x20 #define POLLNVAL 0x20
#define POLLHUP 0x00 // Unknown?
#define POLLERR 0x00 // Unknown?
#define POLLOUT POLLWRNORM
typedef unsigned int nfds_t; typedef unsigned int nfds_t;