mirror of
https://github.com/apache/nuttx.git
synced 2026-05-24 07:46:16 +08:00
fs/vfs/fs_epoll: fix epoll_wait function
This commit is contained in:
+2
-2
@@ -95,11 +95,11 @@ struct epoll_event
|
||||
{
|
||||
epoll_data_t data;
|
||||
pollevent_t events; /* The input event flags */
|
||||
pollevent_t revents; /* The output event flags */
|
||||
|
||||
/* Non-standard fields used internally by NuttX. */
|
||||
|
||||
void *reserved; /* reserved feild sync with struct pollfd */
|
||||
pollevent_t revents; /* The output event flags */
|
||||
void *reserved; /* reserved field sync with struct pollfd */
|
||||
FAR sem_t *sem; /* Pointer to semaphore used to post output event */
|
||||
FAR void *priv; /* For use by drivers */
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user