diff --git a/README.md b/README.md index 2b8b52e..bd48958 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## Features * Small - Under 1000 lines of code! -* Fast - TODO +* Fast - Competitive with async-std and Tokio. * Safe - Written fully in safe Rust. * Portable - Works on Linux, macOS, iOS, and Windows. * Lightweight - Built from scratch, hooks directly into epoll/kqueue/wepoll. diff --git a/src/reactor.rs b/src/reactor.rs index 83bc15e..94adcec 100644 --- a/src/reactor.rs +++ b/src/reactor.rs @@ -15,8 +15,6 @@ use once_cell::sync::Lazy; use slab::Slab; use socket2::{Domain, Protocol, Socket, Type}; -// TODO: if we do lazy register (id: Option), can we beat tokio? - static EPOLL: Lazy = Lazy::new(|| epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap()); static ENTRIES: Lazy>>> = Lazy::new(|| {