fusion/third_party/libhv/event
张兆鹏 09dc02ae52 initial commit 2025-08-05 15:53:44 +08:00
..
kcp initial commit 2025-08-05 15:53:44 +08:00
wepoll initial commit 2025-08-05 15:53:44 +08:00
README.md initial commit 2025-08-05 15:53:44 +08:00
epoll.c initial commit 2025-08-05 15:53:44 +08:00
evport.c initial commit 2025-08-05 15:53:44 +08:00
hevent.c initial commit 2025-08-05 15:53:44 +08:00
hevent.h initial commit 2025-08-05 15:53:44 +08:00
hloop.c initial commit 2025-08-05 15:53:44 +08:00
hloop.h initial commit 2025-08-05 15:53:44 +08:00
iocp.c initial commit 2025-08-05 15:53:44 +08:00
iowatcher.h initial commit 2025-08-05 15:53:44 +08:00
kqueue.c initial commit 2025-08-05 15:53:44 +08:00
nio.c initial commit 2025-08-05 15:53:44 +08:00
nlog.c initial commit 2025-08-05 15:53:44 +08:00
nlog.h initial commit 2025-08-05 15:53:44 +08:00
noevent.c initial commit 2025-08-05 15:53:44 +08:00
overlapio.c initial commit 2025-08-05 15:53:44 +08:00
overlapio.h initial commit 2025-08-05 15:53:44 +08:00
poll.c initial commit 2025-08-05 15:53:44 +08:00
rudp.c initial commit 2025-08-05 15:53:44 +08:00
rudp.h initial commit 2025-08-05 15:53:44 +08:00
select.c initial commit 2025-08-05 15:53:44 +08:00
unpack.c initial commit 2025-08-05 15:53:44 +08:00
unpack.h initial commit 2025-08-05 15:53:44 +08:00

README.md

目录结构

.
├── hloop.h     事件循环模块对外头文件
├── hevent.h    事件结构体定义
├── nlog.h      网络日志
├── unpack.h    拆包
├── rudp.h      可靠UDP
├── iowatcher.h IO多路复用统一抽象接口
├── select.c    EVENT_SELECT实现
├── poll.c      EVENT_POLL实现
├── epoll.c     EVENT_EPOLL实现 (for OS_LINUX)
├── iocp.c      EVENT_IOCP实现  (for OS_WIN)
├── kqueue.c    EVENT_KQUEUE实现(for OS_BSD/OS_MAC)
├── evport.c    EVENT_PORT实现  (for OS_SOLARIS)
├── nio.c       非阻塞IO
└── overlapio.c 重叠IO