top | item 43579190

(no title)

Maledictus | 11 months ago

Could you create a type around Mutex that enforces the locking order?

discuss

order

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.