Replace mio with polling for accept loop (#71)

* replace mio with poller for accept loop
This commit is contained in:
Nikolay Kim 2021-12-18 00:49:27 +06:00 committed by GitHub
parent 7825e0a15f
commit aa5f6e4b55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 291 additions and 298 deletions

View file

@ -894,6 +894,7 @@ impl<'a> ReadRef<'a> {
self.0.flags.set(flags);
self.0.read_task.wake();
} else if flags.contains(Flags::RD_READY) {
log::trace!("waking up io read task");
flags.remove(Flags::RD_READY);
self.0.flags.set(flags);
self.0.read_task.wake();