hewei.it 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
..
README.md fd52ad0e13 move cpp to cpputil, let base event pure c %!s(int64=4) %!d(string=hai) anos
epoll.c e13e3d02f7 update %!s(int64=5) %!d(string=hai) anos
evport.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
hevent.c 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
hevent.h 4165c04c2c avoid to call hloop_run repeatedly %!s(int64=4) %!d(string=hai) anos
hloop.c 89ccb84485 add hio_close_async %!s(int64=4) %!d(string=hai) anos
hloop.h 0e1ddd5c38 optimize code %!s(int64=4) %!d(string=hai) anos
iocp.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
iowatcher.h 6d0aac5203 Add evport support. %!s(int64=5) %!d(string=hai) anos
kqueue.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
nio.c 4c662fd387 fix typo: handshark => handshake %!s(int64=4) %!d(string=hai) anos
nlog.c 4aa4f58960 list_del O(1) %!s(int64=5) %!d(string=hai) anos
nlog.h ca982ca961 update %!s(int64=5) %!d(string=hai) anos
noevent.c 5ec98bae66 HV_EXPORT %!s(int64=5) %!d(string=hai) anos
overlapio.c f0b67f6be3 Revert "hio_t add connected flag to avoid SIGPIPE by hio_write" %!s(int64=5) %!d(string=hai) anos
overlapio.h c6ae3cbcf2 update libhv %!s(int64=6) %!d(string=hai) anos
poll.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos
select.c c178d91d42 SAFE_ALLOC=>HV_ALLOC SAFE_FREE=>HV_FREE %!s(int64=5) %!d(string=hai) anos

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