|
|
4 yıl önce | |
|---|---|---|
| .. | ||
| README.md | 4 yıl önce | |
| epoll.c | 4 yıl önce | |
| evport.c | 5 yıl önce | |
| hevent.c | 4 yıl önce | |
| hevent.h | 4 yıl önce | |
| hloop.c | 4 yıl önce | |
| hloop.h | 4 yıl önce | |
| iocp.c | 5 yıl önce | |
| iowatcher.h | 5 yıl önce | |
| kqueue.c | 5 yıl önce | |
| nio.c | 4 yıl önce | |
| nlog.c | 5 yıl önce | |
| nlog.h | 5 yıl önce | |
| noevent.c | 5 yıl önce | |
| overlapio.c | 4 yıl önce | |
| overlapio.h | 6 yıl önce | |
| poll.c | 4 yıl önce | |
| select.c | 5 yıl önce | |
| unpack.c | 4 yıl önce | |
| unpack.h | 4 yıl önce | |
.
├── 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