Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/asm-gene...
File: poll.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef __ASM_GENERIC_POLL_H
[1] Fix | Delete
#define __ASM_GENERIC_POLL_H
[2] Fix | Delete
[3] Fix | Delete
/* These are specified by iBCS2 */
[4] Fix | Delete
#define POLLIN 0x0001
[5] Fix | Delete
#define POLLPRI 0x0002
[6] Fix | Delete
#define POLLOUT 0x0004
[7] Fix | Delete
#define POLLERR 0x0008
[8] Fix | Delete
#define POLLHUP 0x0010
[9] Fix | Delete
#define POLLNVAL 0x0020
[10] Fix | Delete
[11] Fix | Delete
/* The rest seem to be more-or-less nonstandard. Check them! */
[12] Fix | Delete
#define POLLRDNORM 0x0040
[13] Fix | Delete
#define POLLRDBAND 0x0080
[14] Fix | Delete
#ifndef POLLWRNORM
[15] Fix | Delete
#define POLLWRNORM 0x0100
[16] Fix | Delete
#endif
[17] Fix | Delete
#ifndef POLLWRBAND
[18] Fix | Delete
#define POLLWRBAND 0x0200
[19] Fix | Delete
#endif
[20] Fix | Delete
#ifndef POLLMSG
[21] Fix | Delete
#define POLLMSG 0x0400
[22] Fix | Delete
#endif
[23] Fix | Delete
#ifndef POLLREMOVE
[24] Fix | Delete
#define POLLREMOVE 0x1000
[25] Fix | Delete
#endif
[26] Fix | Delete
#ifndef POLLRDHUP
[27] Fix | Delete
#define POLLRDHUP 0x2000
[28] Fix | Delete
#endif
[29] Fix | Delete
[30] Fix | Delete
#define POLLFREE (__poll_t)0x4000 /* currently only for epoll */
[31] Fix | Delete
[32] Fix | Delete
#define POLL_BUSY_LOOP (__poll_t)0x8000
[33] Fix | Delete
[34] Fix | Delete
struct pollfd {
[35] Fix | Delete
int fd;
[36] Fix | Delete
short events;
[37] Fix | Delete
short revents;
[38] Fix | Delete
};
[39] Fix | Delete
[40] Fix | Delete
#endif /* __ASM_GENERIC_POLL_H */
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function