epoll
https://copyconstruct.medium.com/the-method-to-epolls-madness-d9d2d6378642 The method to epoll’s madness My previous post covered the fundamentals of file descriptors as well as some of the most commonly used forms on non-blocking I/O… copyconstruct.medium.com epoll 은 systemcall이 아니라 자료구조이다. 다른 systemcall로 해당 자료구조를 제어하는 것이다. 1. epoll_create #include int epoll_create(int size); size 는 kernel 로 하여..