About 9,300,000 results
Open links in new tab
  1. multithreading - What is a deadlock? - Stack Overflow

    Aug 29, 2008 · A deadlock is a state of a system in which no single process/thread is capable of executing an action. As mentioned by others, a deadlock is typically the result of a situation …

  2. Deadlocks in Oracle - Stack Overflow

    Feb 11, 2015 · Oracle detects a deadlock automatically, throws ORA-00060: deadlock detected while waiting for resource, and rolls back one of the transactions involved in the deadlock …

  3. What is a deadlock in a database? - Stack Overflow

    May 5, 2010 · What is a deadlock in SQL Server and when it arises? What are the issues with deadlock and how to resolve it?

  4. An async/await example that causes a deadlock - Stack Overflow

    Deadlock. The top-level method is blocking the context thread, waiting for GetJsonAsync to complete, and GetJsonAsync is waiting for the context to be free so it can complete. For the UI …

  5. What's the difference between deadlock and livelock?

    May 27, 2011 · Can somebody please explain with examples (of code) what is the difference between deadlock and livelock?

  6. c# - await vs Task.Wait - Deadlock? - Stack Overflow

    Oct 30, 2012 · On my blog, I go into the details of how blocking in asynchronous code causes deadlock. await will asynchronously wait until the task completes. This means the current …

  7. What are common reasons for deadlocks? - Stack Overflow

    Nov 9, 2015 · 0 Deadlock occurs mainly when there are multiple dependent locks exist. In a thread and another thread tries to lock the mutex in reverse order occurs. One should pay …

  8. How to catch SqlException caused by deadlock? - Stack Overflow

    A deadlock detected by the database will effectively rollback the transaction in which you were running (if any), while the connection is kept open in .NET. Retrying that operation (in that …

  9. Deadlocks in PostgreSQL when running UPDATE - Stack Overflow

    Apr 20, 2012 · Obviously, a deadlock is the result of this happening to rows in different order. There is no row-level lock in RAM which can be obtained for all rows at the same time, but if …

  10. Why do deadlocks happen in SQL Server? - Stack Overflow

    Jul 21, 2011 · The replies are correct about the classic deadlock problem, but there's one more cause of deadlocks, called "lock escalation", that can happen even if all threads follow the …