MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / wait

Method wait

src/runtime/CPP/CPPScheduler.cpp:245–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243}
244
245std::exception_ptr Thread::wait()
246{
247 {
248 std::unique_lock<std::mutex> lock(_m);
249 _cv.wait(lock, [&] { return _job_complete; });
250 }
251 return _current_exception;
252}
253
254void Thread::worker_thread()
255{

Callers 3

lock_poolMethod · 0.45
worker_threadMethod · 0.45
run_workloadsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected