Skip to content

Commit 0e7650a

Browse files
Merge pull request #822 from async-rs/async-extern-1
2 parents 43de933 + 8f17e92 commit 0e7650a

File tree

5 files changed

+12
-303
lines changed

5 files changed

+12
-303
lines changed

Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ std = [
4848
"slab",
4949
"wasm-bindgen-futures",
5050
"futures-channel",
51+
"async-mutex",
5152
]
5253
alloc = [
5354
"futures-core/alloc",
@@ -58,6 +59,7 @@ tokio02 = ["smol/tokio02"]
5859
[dependencies]
5960
async-attributes = { version = "1.1.1", optional = true }
6061
async-task = { version = "3.0.0", optional = true }
62+
async-mutex = { version = "1.1.3", optional = true }
6163
crossbeam-utils = { version = "0.7.2", optional = true }
6264
futures-core = { version = "0.3.4", optional = true, default-features = false }
6365
futures-io = { version = "0.3.4", optional = true }
@@ -75,7 +77,7 @@ futures-timer = { version = "3.0.2", optional = true }
7577
surf = { version = "1.0.3", optional = true }
7678

7779
[target.'cfg(not(target_os = "unknown"))'.dependencies]
78-
smol = { version = "0.1.14", optional = true }
80+
smol = { version = "0.1.17", optional = true }
7981

8082
[target.'cfg(target_arch = "wasm32")'.dependencies]
8183
futures-timer = { version = "3.0.2", optional = true, features = ["wasm-bindgen"] }

src/sync/condvar.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::fmt;
22
use std::pin::Pin;
33
use std::time::Duration;
44

5-
use super::mutex::{guard_lock, MutexGuard};
5+
use super::MutexGuard;
66
use crate::future::{timeout, Future};
77
use crate::sync::WakerSet;
88
use crate::task::{Context, Poll};
@@ -120,7 +120,7 @@ impl Condvar {
120120
/// ```
121121
#[allow(clippy::needless_lifetimes)]
122122
pub async fn wait<'a, T>(&self, guard: MutexGuard<'a, T>) -> MutexGuard<'a, T> {
123-
let mutex = guard_lock(&guard);
123+
let mutex = MutexGuard::source(&guard);
124124

125125
self.await_notify(guard).await;
126126

@@ -228,7 +228,7 @@ impl Condvar {
228228
guard: MutexGuard<'a, T>,
229229
dur: Duration,
230230
) -> (MutexGuard<'a, T>, WaitTimeoutResult) {
231-
let mutex = guard_lock(&guard);
231+
let mutex = MutexGuard::source(&guard);
232232
match timeout(dur, self.wait(guard)).await {
233233
Ok(guard) => (guard, WaitTimeoutResult(false)),
234234
Err(_) => (mutex.lock().await, WaitTimeoutResult(true)),
@@ -281,7 +281,7 @@ impl Condvar {
281281
where
282282
F: FnMut(&mut T) -> bool,
283283
{
284-
let mutex = guard_lock(&guard);
284+
let mutex = MutexGuard::source(&guard);
285285
match timeout(dur, self.wait_until(guard, condition)).await {
286286
Ok(guard) => (guard, WaitTimeoutResult(false)),
287287
Err(_) => (mutex.lock().await, WaitTimeoutResult(true)),

src/sync/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,11 @@
176176
#[doc(inline)]
177177
pub use std::sync::{Arc, Weak};
178178

179-
pub use mutex::{Mutex, MutexGuard};
179+
#[doc(inline)]
180+
pub use async_mutex::{Mutex, MutexGuard};
181+
180182
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};
181183

182-
mod mutex;
183184
mod rwlock;
184185

185186
cfg_unstable! {

src/sync/mutex.rs

-294
This file was deleted.

tests/timeout.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
1010
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
1111
fn timeout_future_many() {
1212
task::block_on(async {
13-
let futures = (0..100)
13+
let futures = (0..10)
1414
.map(|i| {
15-
timeout(Duration::from_millis(i * 20), async move {
15+
timeout(Duration::from_millis(i * 50), async move {
1616
task::sleep(Duration::from_millis(i)).await;
1717
Ok::<(), async_std::future::TimeoutError>(())
1818
})

0 commit comments

Comments
 (0)