CV-Bowen commented on code in PR #7131:
URL: https://github.com/apache/incubator-nuttx/pull/7131#discussion_r975315293


##########
include/sys/poll.h:
##########
@@ -82,6 +82,16 @@
 #define POLLSOCK     (0x80)
 #define POLLMASK     (0xC0)
 
+/* poll_notify option definitions */
+
+#define POLL_NOTIFY_NOCHECK (0x00000001)
+
+#define poll_notify(sfds, nfds, eventset)           \

Review Comment:
   Done



##########
include/sys/poll.h:
##########
@@ -82,6 +82,16 @@
 #define POLLSOCK     (0x80)
 #define POLLMASK     (0xC0)
 
+/* poll_notify option definitions */
+
+#define POLL_NOTIFY_NOCHECK (0x00000001)
+
+#define poll_notify(sfds, nfds, eventset)           \
+  poll_notify_common(sfds, nfds, eventset, 0)
+
+#define poll_notify_nocheck(sfds, nfds, eventset)   \

Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to