mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
7a163b2195
except, again, POLLFREE and POLL_BUSY_LOOP. With this, we finally get to the promised end result: - POLL{IN,OUT,...} are plain integers and *not* in __poll_t, so any stray instances of ->poll() still using those will be caught by sparse. - eventpoll.c and select.c warning-free wrt __poll_t - no more kernel-side definitions of POLL... - userland ones are visible through the entire kernel (and used pretty much only for mangle/demangle) - same behavior as after the first series (i.e. sparc et.al. epoll(2) working correctly). Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
43 lines
894 B
C
43 lines
894 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef __ASM_GENERIC_POLL_H
|
|
#define __ASM_GENERIC_POLL_H
|
|
|
|
/* These are specified by iBCS2 */
|
|
#define POLLIN 0x0001
|
|
#define POLLPRI 0x0002
|
|
#define POLLOUT 0x0004
|
|
#define POLLERR 0x0008
|
|
#define POLLHUP 0x0010
|
|
#define POLLNVAL 0x0020
|
|
|
|
/* The rest seem to be more-or-less nonstandard. Check them! */
|
|
#define POLLRDNORM 0x0040
|
|
#define POLLRDBAND 0x0080
|
|
#ifndef POLLWRNORM
|
|
#define POLLWRNORM 0x0100
|
|
#endif
|
|
#ifndef POLLWRBAND
|
|
#define POLLWRBAND 0x0200
|
|
#endif
|
|
#ifndef POLLMSG
|
|
#define POLLMSG 0x0400
|
|
#endif
|
|
#ifndef POLLREMOVE
|
|
#define POLLREMOVE 0x1000
|
|
#endif
|
|
#ifndef POLLRDHUP
|
|
#define POLLRDHUP 0x2000
|
|
#endif
|
|
|
|
#define POLLFREE (__force __poll_t)0x4000 /* currently only for epoll */
|
|
|
|
#define POLL_BUSY_LOOP (__force __poll_t)0x8000
|
|
|
|
struct pollfd {
|
|
int fd;
|
|
short events;
|
|
short revents;
|
|
};
|
|
|
|
#endif /* __ASM_GENERIC_POLL_H */
|