2015-08-11 00:38:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* fs/vfs/fs_epoll.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Anton D. Kachalov. All rights reserved.
|
|
|
|
* Author: Anton D. Kachalov <mouse@mayc.ru>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-08-07 09:21:42 +08:00
|
|
|
#ifndef __INCLUDE_SYS_EPOLL_H
|
|
|
|
#define __INCLUDE_SYS_EPOLL_H
|
2015-08-11 00:38:41 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
2015-08-10 23:15:24 +08:00
|
|
|
|
|
|
|
#include <poll.h>
|
|
|
|
|
2015-08-11 00:38:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define EPOLL_CTL_ADD 1 /* Add a file descriptor to the interface. */
|
|
|
|
#define EPOLL_CTL_DEL 2 /* Remove a file descriptor from the interface. */
|
|
|
|
#define EPOLL_CTL_MOD 3 /* Change file descriptor epoll_event structure. */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-08-10 23:15:24 +08:00
|
|
|
enum EPOLL_EVENTS
|
|
|
|
{
|
|
|
|
EPOLLIN = POLLIN,
|
|
|
|
#define EPOLLIN EPOLLIN
|
|
|
|
EPOLLPRI = POLLPRI,
|
|
|
|
#define EPOLLPRI EPOLLPRI
|
|
|
|
EPOLLOUT = POLLOUT,
|
|
|
|
#define EPOLLOUT EPOLLOUT
|
|
|
|
EPOLLRDNORM = POLLRDNORM,
|
|
|
|
#define EPOLLRDNORM EPOLLRDNORM
|
|
|
|
EPOLLRDBAND = POLLRDBAND,
|
|
|
|
#define EPOLLRDBAND EPOLLRDBAND
|
|
|
|
EPOLLWRNORM = POLLWRNORM,
|
|
|
|
#define EPOLLWRNORM EPOLLWRNORM
|
|
|
|
EPOLLWRBAND = POLLWRBAND,
|
|
|
|
#define EPOLLWRBAND EPOLLWRBAND
|
|
|
|
EPOLLERR = POLLERR,
|
|
|
|
#define EPOLLERR EPOLLERR
|
|
|
|
EPOLLHUP = POLLHUP,
|
|
|
|
#define EPOLLHUP EPOLLHUP
|
2020-09-25 18:19:27 +08:00
|
|
|
EPOLLRDHUP = 0x2000,
|
|
|
|
#define EPOLLRDHUP EPOLLRDHUP
|
|
|
|
EPOLLWAKEUP = 1u << 29,
|
|
|
|
#define EPOLLWAKEUP EPOLLWAKEUP
|
2020-08-17 01:32:21 +08:00
|
|
|
EPOLLONESHOT = 1u << 30,
|
|
|
|
#define EPOLLONESHOT EPOLLONESHOT
|
2015-08-10 23:15:24 +08:00
|
|
|
};
|
|
|
|
|
2020-08-17 10:58:27 +08:00
|
|
|
/* Flags to be passed to epoll_create1. */
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2020-08-17 01:00:36 +08:00
|
|
|
EPOLL_CLOEXEC = 02000000
|
2020-08-17 10:58:27 +08:00
|
|
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
|
|
|
};
|
|
|
|
|
2015-08-10 23:15:24 +08:00
|
|
|
typedef union poll_data
|
|
|
|
{
|
2020-08-17 01:00:36 +08:00
|
|
|
FAR void *ptr;
|
2020-08-13 17:26:34 +08:00
|
|
|
int fd;
|
|
|
|
uint32_t u32;
|
2015-08-10 23:15:24 +08:00
|
|
|
} epoll_data_t;
|
|
|
|
|
|
|
|
struct epoll_event
|
|
|
|
{
|
2020-08-21 01:37:17 +08:00
|
|
|
uint32_t events;
|
2015-08-10 23:15:24 +08:00
|
|
|
epoll_data_t data;
|
|
|
|
};
|
|
|
|
|
2020-09-17 15:32:53 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2015-08-11 00:38:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-08-10 23:15:24 +08:00
|
|
|
int epoll_create(int size);
|
2020-08-17 10:58:27 +08:00
|
|
|
int epoll_create1(int flags);
|
2020-08-17 01:00:36 +08:00
|
|
|
int epoll_ctl(int epfd, int op, int fd, FAR struct epoll_event *ev);
|
|
|
|
int epoll_wait(int epfd, FAR struct epoll_event *evs,
|
2020-08-17 10:58:27 +08:00
|
|
|
int maxevents, int timeout);
|
2020-08-17 01:00:36 +08:00
|
|
|
int epoll_pwait(int epfd, FAR struct epoll_event *evs,
|
|
|
|
int maxevents, int timeout, FAR const sigset_t *sigmask);
|
2015-08-10 23:15:24 +08:00
|
|
|
|
|
|
|
void epoll_close(int epfd);
|
|
|
|
|
2020-09-17 15:32:53 +08:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-07 09:21:42 +08:00
|
|
|
#endif /* __INCLUDE_SYS_EPOLL_H */
|