Search Results

1
vote

Avoid deadlocks in a multithreaded process

The canonical technique for deadlock avoidance is to have a lock hierarchy. Make sure that all threads acquire locks or other resources in the same order. This avoids the deadlock scenario where …
0
votes

Tips for becoming a better programmer…

Learn to always ask yourself, "How could things be better?" When you make mistakes, don't ignore them. Think about what you could have done differently to avoid the problem. This ranges …