4
votes
Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)
The answer is not efficiency. Non-reentrant mutexes lead to better code.
Example: A::foo() acquires the lock. It then calls B::bar(). This worked fine when you wrote it. But so …
