Do not check readiness for dispatcher call

This commit is contained in:
Nikolay Kim 2024-10-10 18:57:24 +05:00
parent c670b51983
commit d101fbc668
5 changed files with 33 additions and 18 deletions

View file

@ -246,15 +246,19 @@ impl<'a, S: ?Sized, F: Future> Future for ReadyCall<'a, S, F> {
// SAFETY: `fut` never moves
let result = unsafe { Pin::new_unchecked(&mut self.as_mut().fut).poll(cx) };
match result {
task::Poll::Pending => self.ctx.waiters.register(self.ctx.idx, cx),
task::Poll::Pending => {
self.ctx.waiters.register(self.ctx.idx, cx);
task::Poll::Pending
}
task::Poll::Ready(res) => {
self.completed = true;
self.ctx.waiters.notify();
return task::Poll::Ready(res);
task::Poll::Ready(res)
}
}
} else {
task::Poll::Pending
}
task::Poll::Pending
}
}