Say it like this
Real examples
"We discovered a deadlock in the payment service when two threads try to update the same account balance."
"This code could cause a deadlock because Thread A locks mutex X then waits for mutex Y, while Thread B does the opposite."
"The database deadlock last night affected order processing for about ten minutes before the retry logic kicked in."
Don't say this
Handle with care. Deadlock specifically refers to a situation where two or more processes are blocked waiting for each other. Do not use it generically for any system freeze or delay.
Other forms
deadlock
"A deadlock occurs when resources are not released properly."
deadlock (transitive/intransitive)
"The system can deadlock if you do not acquire locks in the correct order."
Often used with
Similar words
Opposites
Practice
Try it
4 quick exercises
1. Your team found two threads blocking each other. What do you say in a standup?
2. If Thread A holds Lock 1 and waits for Lock 2 while Thread B holds Lock 2 and waits for Lock 1, you have a _______.
3. Which sentence uses deadlock incorrectly?
4. Rewrite this in natural tech English: 'Two parts of the code are waiting for each other and nothing can continue.'
Questions
Quick poll
Have you said "deadlock" in a standup this week?
Want more structured practice like this? Our English for Programmers course covers real workplace English in depth.




