Signals all threads waiting on guards.
()
| 1078 | */ |
| 1079 | |
| 1080 | @GuardedBy("lock") |
| 1081 | private void signalAllWaiters() { |
| 1082 | for (Guard guard = activeGuards; guard != null; guard = guard.next) { |
| 1083 | guard.condition.signalAll(); |
| 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | /** |
| 1088 | * Records that the current thread is about to wait on the specified guard. |