Changeset 679 for GPL/trunk/include/linux/poll.h
- Timestamp:
- Mar 18, 2021, 8:57:36 PM (4 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-linux-3.2.102 (added) merged: 611-614 /GPL/branches/uniaud32-next (added) merged: 615-678
- Property svn:mergeinfo changed
-
GPL/trunk/include/linux/poll.h
r32 r679 9 9 #include <linux/wait.h> 10 10 #include <linux/fs.h> 11 #include <linux/string.h> 11 12 12 13 #ifdef __KERNEL__ … … 81 82 #endif /* KERNEL */ 82 83 84 /* Epoll event masks */ 85 #define EPOLLIN (__force __poll_t)0x00000001 86 #define EPOLLPRI (__force __poll_t)0x00000002 87 #define EPOLLOUT (__force __poll_t)0x00000004 88 #define EPOLLERR (__force __poll_t)0x00000008 89 #define EPOLLHUP (__force __poll_t)0x00000010 90 #define EPOLLNVAL (__force __poll_t)0x00000020 91 #define EPOLLRDNORM (__force __poll_t)0x00000040 92 #define EPOLLRDBAND (__force __poll_t)0x00000080 93 #define EPOLLWRNORM (__force __poll_t)0x00000100 94 #define EPOLLWRBAND (__force __poll_t)0x00000200 95 #define EPOLLMSG (__force __poll_t)0x00000400 96 #define EPOLLRDHUP (__force __poll_t)0x00002000 97 83 98 #endif /* _LINUX_POLL_H */
Note:
See TracChangeset
for help on using the changeset viewer.