top | item 43579190 (no title) Maledictus | 11 months ago Could you create a type around Mutex that enforces the locking order? discuss order hn newest aw1621107|11 months ago Something like https://docs.rs/lock_ordering/latest/lock_ordering perhaps? j-krieger|11 months ago You could - and this is what we do - push all of your state into one large struct. Note that this has drawbacks as well and if you have a lot of reads and some very important writes, you will still get deadlocks.
j-krieger|11 months ago You could - and this is what we do - push all of your state into one large struct. Note that this has drawbacks as well and if you have a lot of reads and some very important writes, you will still get deadlocks.
aw1621107|11 months ago
j-krieger|11 months ago