MCPcopy Create free account
hub / github.com/apache/impala / Broadcast

Method Broadcast

be/src/kudu/util/condition_variable.cc:132–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130}
131
132void ConditionVariable::Broadcast() {
133 int rv = pthread_cond_broadcast(&condition_);
134 DCHECK_EQ(0, rv);
135}
136
137void ConditionVariable::Signal() {
138 int rv = pthread_cond_signal(&condition_);

Callers 11

ShutdownMethod · 0.80
WaitMethod · 0.80
ShutdownMethod · 0.80
ShutdownMethod · 0.80
RunMethod · 0.80
TransitionMethod · 0.80
DispatchThreadMethod · 0.80
CommitUnlockMethod · 0.80
RunThreadMethod · 0.80
CountDownMethod · 0.80
ResetMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected