Click here to Skip to main content
15,888,521 members
Articles / Programming Languages / C++

Troubleshootng Deadlocks in .NET Applications

17 Feb 2015CPOL 7.3K   5   3
What do you do when your application becomes unresponsive due to potential deadlocks? I think the first thing to do is to identify exactly where the application hangs. To do this you should replace the lock(…) statement with it’s equivalent Monitor.Enter(…)/Monitor.Exit(…). M
We're sorry, but the article you are trying to view was deleted at 20 Feb 2015.

Please go to the C++ Table of Contents to view the list of available articles in this section.