Home / cs-notes / Operating System / Linux / Syscalls / select vs poll vs epoll / repeat listening
重复监听
- select
- copy new fd_set to kernel
- poll
- copy new struct pollfd to kernel
- epoll
- reuse old RB-Tree
Home / cs-notes / Operating System / Linux / Syscalls / select vs poll vs epoll / repeat listening