|
|
|
|
|
by zidel
190 days ago
|
|
Rust handles this by automatically unlocking when the MutexGuard returned by lock() is dropped. The issue here is not that the mutex remains locked, but rather that the data protected by the mutex might be inconsistent (and the mutex unlocked) after a panic. |
|
Thanks for the clarification.