ec
ec copied to clipboard
System may block on condition forever
System must not use loops that have the potential to block forever waiting on a condition. Any such loop must add a mechanism to ensure the loop will terminate, such as:
- Retry limit
- Timeout
- Restructure logic to not require in-line waiting (remove the loop)