MCPcopy Create free account
hub / github.com/antlr/codebuff / signalAllWaiters

Method signalAllWaiters

output/java_guava/1.4.17/Monitor.java:1080–1085  ·  view source on GitHub ↗

Signals all threads waiting on guards.

()

Source from the content-addressed store, hash-verified

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.

Callers 1

isSatisfiedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected