Another common version of this is "we need to eliminate any deadlocks in our multi-threaded code". A perfectly-reasonable request, from the management perspective, but in order to prevent deadlocks in the general case, you have to analyse every possible locking state that the software can get into, which is, no surprise, equivalent to the halting problem. There are ways to partially "solve" deadlocks in a complex system by imposing another layer on top of te locking (like a defined order of acquisition), but these methods are not always applicable.