ithewei 4f9d8e9627 Add evpp: EventLoop EventLoopThread EventLoopThreadPool 5 lat temu
..
README.md 43583cd644 Add TREE.md 5 lat temu
epoll.c e13e3d02f7 update 5 lat temu
evport.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 lat temu
hevent.c 4f9d8e9627 Add evpp: EventLoop EventLoopThread EventLoopThreadPool 5 lat temu
hevent.h 4f9d8e9627 Add evpp: EventLoop EventLoopThread EventLoopThreadPool 5 lat temu
hloop.c 4f9d8e9627 Add evpp: EventLoop EventLoopThread EventLoopThreadPool 5 lat temu
hloop.h f8ad665a9e HV_EXPORT hio_events hio_revents 5 lat temu
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 lat temu
iowatcher.h 6d0aac5203 Add evport support. 5 lat temu
kqueue.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 lat temu
nio.c dd0a1b64b4 hio_read hio_write safe check 5 lat temu
nlog.c 4aa4f58960 list_del O(1) 5 lat temu
nlog.h ca982ca961 update 5 lat temu
nmap.cpp efc75784c8 code review 5 lat temu
nmap.h 5ec98bae66 HV_EXPORT 5 lat temu
noevent.c 5ec98bae66 HV_EXPORT 5 lat temu
overlapio.c f0b67f6be3 Revert "hio_t add connected flag to avoid SIGPIPE by hio_write" 5 lat temu
overlapio.h c6ae3cbcf2 update libhv 6 lat temu
poll.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 lat temu
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE 5 lat temu

README.md

目录结构

.
├── hloop.h     事件循环模块对外头文件
├── hevent.h    事件结构体定义
├── nlog.h      网络日志
├── nmap.h      主机发现 (nmap实现)
├── 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