ithewei 1c5dfb7863 update vor 4 Jahren
..
README.md fd52ad0e13 move cpp to cpputil, let base event pure c vor 4 Jahren
epoll.c b5ef532c28 optimize vor 4 Jahren
evport.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE vor 5 Jahren
hevent.c 1c5dfb7863 update vor 4 Jahren
hevent.h e6c99dd501 hio_read_until vor 4 Jahren
hloop.c 1c5dfb7863 update vor 4 Jahren
hloop.h e6c99dd501 hio_read_until vor 4 Jahren
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE vor 5 Jahren
iowatcher.h 6d0aac5203 Add evport support. vor 5 Jahren
kqueue.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE vor 5 Jahren
nio.c 1c5dfb7863 update vor 4 Jahren
nlog.c 4aa4f58960 list_del O(1) vor 5 Jahren
nlog.h ca982ca961 update vor 5 Jahren
noevent.c 5ec98bae66 HV_EXPORT vor 5 Jahren
overlapio.c f2370eabba hio_unpack vor 4 Jahren
overlapio.h c6ae3cbcf2 update libhv vor 6 Jahren
poll.c b5ef532c28 optimize vor 4 Jahren
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE vor 5 Jahren
unpack.c e6c99dd501 hio_read_until vor 4 Jahren
unpack.h f2370eabba hio_unpack vor 4 Jahren

README.md

目录结构

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