MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / startThread

Method startThread

JUCE/modules/juce_core/threads/juce_Thread.cpp:122–134  ·  view source on GitHub ↗

==============================================================================

Source from the content-addressed store, hash-verified

120
121//==============================================================================
122void Thread::startThread()
123{
124 const ScopedLock sl (startStopLock);
125
126 shouldExit = 0;
127
128 if (threadHandle.get() == nullptr)
129 {
130 launchThread();
131 setThreadPriority (threadHandle.get(), threadPriority);
132 startSuspensionEvent.signal();
133 }
134}
135
136void Thread::startThread (int priority)
137{

Callers 11

FileBrowserComponentMethod · 0.45
runTestMethod · 0.45
launchMethod · 0.45
createThreadsMethod · 0.45
startTestFunction · 0.45
AudioPlaybackDemoMethod · 0.45
AudioRecorderMethod · 0.45
VideoDemoFunction · 0.45
ImagesDemoMethod · 0.45

Calls 2

signalMethod · 0.80
getMethod · 0.45

Tested by 1

startTestFunction · 0.36