Un deadlock è uno stato in cui due o più thread sono ciascuno bloccati per sempre, ognuno in attesa di una risorsa che un altro detiene. Nulla avanza.
Le quattro condizioni necessarie (Coffman)
Tutte e quattro devono valere contemporaneamente — rimuovine una qualsiasi e il deadlock è impossibile:
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)
