diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-18 19:06:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 19:06:48 -0400 |
commit | 34a2aa4de6cfe334cf0d26620d244d5c66a976a4 (patch) | |
tree | bda898bc079aa7abb5c1d8c2406b1cbd07a87f49 /src/main.rs | |
parent | e98d3391de9abf6be0c2be18651611c66eec4073 (diff) |
Remove Eager read, write, accept (#1959)
Removing this reduces tail latency in test/http_bench.ts by half.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 9afbbb8a9..0f12eebd1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,9 +35,6 @@ mod tokio_write; pub mod version; pub mod workers; -#[cfg(unix)] -mod eager_unix; - use crate::cli::Cli; use crate::errors::RustOrJsError; use crate::isolate::Isolate; |