mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
179 lines
6.1 KiB
Text
179 lines
6.1 KiB
Text
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:9:13
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:11:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
= note: `-D clippy::await-holding-lock` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::await_holding_lock)]`
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:25:13
|
|
|
|
|
LL | let guard = x.read().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:27:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:31:13
|
|
|
|
|
LL | let mut guard = x.write().unwrap();
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:33:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:53:13
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:56:28
|
|
|
|
|
LL | let second = baz().await;
|
|
| ^^^^^
|
|
LL |
|
|
LL | let third = baz().await;
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:67:17
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:69:19
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:80:17
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:82:19
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:93:13
|
|
|
|
|
LL | let guard = x.lock();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:95:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:109:13
|
|
|
|
|
LL | let guard = x.read();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:111:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:115:13
|
|
|
|
|
LL | let mut guard = x.write();
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:117:15
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:137:13
|
|
|
|
|
LL | let guard = x.lock();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:140:28
|
|
|
|
|
LL | let second = baz().await;
|
|
| ^^^^^
|
|
LL |
|
|
LL | let third = baz().await;
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:151:17
|
|
|
|
|
LL | let guard = x.lock();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:153:19
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:164:17
|
|
|
|
|
LL | let guard = x.lock();
|
|
| ^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:166:19
|
|
|
|
|
LL | baz().await
|
|
| ^^^^^
|
|
|
|
error: this `MutexGuard` is held across an `await` point
|
|
--> $DIR/await_holding_lock.rs:185:9
|
|
|
|
|
LL | let mut guard = x.lock().unwrap();
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
|
|
note: these are all the `await` points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:189:11
|
|
|
|
|
LL | baz().await;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 13 previous errors
|
|
|