We can't find the internet
Attempting to reconnect
Something went wrong!
Attempting to reconnect
Mutex practice problems in Rust
Difficulty:
Category:
Tag:
Showing 7 of 7
| Status | Title | Difficulty | Category | Tags |
|---|---|---|---|---|
| Arc gives you sharing, not mutability | Easy | Primitives |
|
|
| Condvar: a wakeup is a hint, the predicate is the truth | Hard | Framework |
|
|
| Deadlock by lock ordering: the guarantee Rust does not give you | Hard | End-to-End |
|
|
| Mutex and MutexGuard: you cannot forget to unlock | Easy | Primitives |
|
|
| Poisoning: what a panic does to a lock | Medium | Framework |
|
|
| Rc<RefCell<T>> vs Arc<Mutex<T>>, and the arena that beats both | Medium | End-to-End |
|
|
| Sync: T is Sync exactly when &T is Send | Medium | Primitives |
|