Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/task/join_handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,16 @@ impl<T> Drop for JoinHandle<T> {
impl<T> Future for JoinHandle<T> {
type Output = T;

#[cfg(not(target_os = "unknown"))]
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
Pin::new(&mut self.handle.as_mut().unwrap()).poll(cx)
}

#[cfg(target_arch = "wasm32")]
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match Pin::new(&mut self.handle.as_mut().unwrap()).poll(cx) {
Poll::Ready(Ok(value)) => Poll::Ready(value),
_ => Poll::Pending,
}
}
}