Search Results

4
votes

Daemon Threads Explanation

A simpler way to think about it, perhaps: when main returns, your process will not exit if there are non-daemon threads still running. A bit of advice: Clean shutdown is easy to get wrong w …
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 …