Ignore:
Timestamp:
Mar 18, 2021, 8:57:36 PM (4 years ago)
Author:
David Azarewicz
Message:

Merge changes from Paul's uniaud32next branch.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/include/linux/poll.h

    r32 r679  
    99#include <linux/wait.h>
    1010#include <linux/fs.h>
     11#include <linux/string.h>
    1112
    1213#ifdef __KERNEL__
     
    8182#endif /* KERNEL */
    8283
     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
    8398#endif /* _LINUX_POLL_H */
Note: See TracChangeset for help on using the changeset viewer.