mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Replace mio with polling for accept loop (#71)
* replace mio with poller for accept loop
This commit is contained in:
parent
7825e0a15f
commit
aa5f6e4b55
17 changed files with 291 additions and 298 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue