]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
We now support POLLPRI so actually define it.
authorDarren Tucker <dtucker@dtucker.net>
Thu, 10 Feb 2022 11:17:31 +0000 (22:17 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 10 Feb 2022 11:18:02 +0000 (22:18 +1100)
openbsd-compat/bsd-poll.h

index 73acd3c1726c31578c432f0b082b10d0fe08b599..fb99b66f2cf02c01ba667360da8bb8f34a842b2c 100644 (file)
@@ -46,13 +46,13 @@ typedef struct pollfd {
 } pollfd_t;
 
 #define        POLLIN          0x0001
+#define        POLLPRI         0x0002
 #define        POLLOUT         0x0004
 #define        POLLERR         0x0008
 #define        POLLHUP         0x0010
 #define        POLLNVAL        0x0020
 #if 0
 /* the following are currently not implemented */
-#define        POLLPRI         0x0002
 #define        POLLRDNORM      0x0040
 #define POLLNORM       POLLRDNORM
 #define POLLWRNORM      POLLOUT