A deadlock is a state where two or more threads are each blocked forever, each waiting for a resource that another holds. Nothing makes progress.
The four necessary (Coffman) conditions
All four must hold at once — remove any one and deadlock is impossible:
1. Mutual exclusion → a resource is held exclusively (only one holder at a time)
2. Hold and wait → a thread holds one resource while waiting to acquire another
3. No preemption → resources can't be forcibly taken; only released voluntarily
4. Circular wait → a cycle: T1 waits for R2 (held by T2), T2 waits for R1 (held by T1)
