summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mpsc/chan.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/sync/mpsc/chan.rs')
-rw-r--r--tokio/src/sync/mpsc/chan.rs19
1 files changed, 2 insertions, 17 deletions
diff --git a/tokio/src/sync/mpsc/chan.rs b/tokio/src/sync/mpsc/chan.rs
index c78fb501..a40f5c3d 100644
--- a/tokio/src/sync/mpsc/chan.rs
+++ b/tokio/src/sync/mpsc/chan.rs
@@ -148,25 +148,10 @@ impl<T, S: Semaphore> Tx<T, S> {
}
pub(crate) async fn closed(&self) {
- use std::future::Future;
- use std::pin::Pin;
- use std::task::Poll;
-
// In order to avoid a race condition, we first request a notification,
- // **then** check the current value's version. If a new version exists,
- // the notification request is dropped. Requesting the notification
- // requires polling the future once.
+ // **then** check whether the semaphore is closed. If the semaphore is
+ // closed the notification request is dropped.
let notified = self.inner.notify_rx_closed.notified();
- pin!(notified);
-
- // Polling the future once is guaranteed to return `Pending` as `watch`
- // only notifies using `notify_waiters`.
- crate::future::poll_fn(|cx| {
- let res = Pin::new(&mut notified).poll(cx);
- assert!(!res.is_ready());
- Poll::Ready(())
- })
- .await;
if self.inner.semaphore.is_closed() {
return;