# coro_epoll_kqueue **Repository Path**: yutao1115/coro_epoll_kqueue ## Basic Information - **Project Name**: coro_epoll_kqueue - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-05 - **Last Updated**: 2025-12-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # coro_epoll_kqueue c++20 coroutine with epoll and queue C++20 coroutine对于epoll和kqueue的封装示例,只有500行代码,适合学习参考。echo_server.cpp就是使用示例。 编译: ``` git clone https://github.com/franktea/coro_epoll_kqueue.git; cd coro_epoll_kqueue; mkdir -p build; cd build; cmake .. make ``` 最初参考了https://github.com/Ender-events/epoll-coroutine