nuttx/net/local
zhanghongyu 43cc4bd7bf net_local: fix error when work with epoll
epoll_wait collects revent by checking fds->revent,
but local_socket will copy fds to the other two private pollfd shandow struct,
then the pipe_poll will not be able to update fds->revent directly,
so need local_socket save fds and implement a private poll_notify function
to passing revent to original fds->revent.

Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
2022-12-31 02:23:50 +08:00
..
Kconfig net/local: Rename NET_LOCAL_PATH_PREFIX to NET_LOCAL_VFS_PATH 2022-02-06 19:42:00 +01:00
local_accept.c libc: Move queue.h from include to include/nuttx 2022-09-26 08:04:58 +02:00
local_bind.c net/local: Support the abstract path 2022-12-18 20:12:30 +02:00
local_conn.c net/local: support cmd SO_PEERCRED 2022-11-23 15:01:54 +08:00
local_connect.c net/local: Support the abstract path 2022-12-18 20:12:30 +02:00
local_fifo.c net/local: unified formatting name function 2022-10-11 00:53:57 +08:00
local_listen.c local: add net_lock to local_listen 2022-11-28 16:36:39 +08:00
local_netpoll.c net_local: fix error when work with epoll 2022-12-31 02:23:50 +08:00
local_recvmsg.c net/local: remove dead code 2022-09-27 21:31:48 +08:00
local_recvutils.c net/local: Return -EINVAL if the address length passed to local_bind is too small 2022-12-18 20:12:30 +02:00
local_release.c libc: Move queue.h from include to include/nuttx 2022-09-26 08:04:58 +02:00
local_sendmsg.c Replace nxsem API when used as a lock with nxmutex API 2022-10-17 15:59:46 +09:00
local_sendpacket.c net/local: Remove the sync preamble from datagram 2022-08-10 09:50:25 +03:00
local_sockif.c net/local: Support the abstract path 2022-12-18 20:12:30 +02:00
local.h net/local: Remove LOCAL_TYPE_UNTYPED 2022-12-18 20:12:30 +02:00
Make.defs