How do you ensure that N threads can access N resources without deadlock ?

3 years ago
OOP Java

A very simple way to avoid deadlock while using N threads is to impose an ordering on the locks and force each thread to follow that ordering. Thus, if all threads lock and unlock the mutexes in the same order, no deadlocks can arise.

More related questions

Questions Bank

View all Questions