multithreading, Programming IT Nursery Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex) POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won’t deadlock. Of course it also needs to unlock it twice,... June 1, 2022 0 Comments