Allenxuxu / gev

🚀Gev is a lightweight, fast non-blocking TCP network library / websocket server based on Reactor mode. Support custom protocols to quickly and easily build high-performance servers.
MIT License
1.72k stars 193 forks source link

Fix FD CLOSE #81

Closed Comolli closed 3 years ago

Comolli commented 3 years ago

When the file descriptor is no longer required it should be closed. When all file descriptors associated with the same eventfd object have been closed, the resources for object are freed by the kernel.

Allenxuxu commented 3 years ago

Thanks 😄