MCPcopy Create free account
hub / github.com/DISTRHO/DPF / _runEntryPoint

Function _runEntryPoint

distrho/extra/Thread.hpp:312–326  ·  view source on GitHub ↗

* Thread entry point. */

Source from the content-addressed store, hash-verified

310 * Thread entry point.
311 */
312 void _runEntryPoint() noexcept
313 {
314 if (fName.isNotEmpty())
315 setCurrentThreadName(fName);
316
317 // report ready
318 fSignal.signal();
319
320 try {
321 run();
322 } catch(...) {}
323
324 // done
325 _init();
326 }
327
328 /*
329 * Thread entry point.

Callers

nothing calls this directly

Calls 3

setCurrentThreadNameFunction · 0.85
_initFunction · 0.85
runFunction · 0.50

Tested by

no test coverage detected