31#include <dspatch/Component.h>
34#define WIN32_LEAN_AND_MEAN
36#undef WIN32_LEAN_AND_MEAN
39#include <condition_variable>
80 inline void Start( std::vector<DSPatch::Component*>* components,
int bufferNo )
82 _components = components;
88 _thread = std::thread( &CircuitThread::_Run,
this );
97 if ( _thread.joinable() )
105 std::unique_lock<std::mutex> lock( _syncMutex );
109 _syncCondt.wait( lock );
116 _resumeCondt.notify_all();
119 inline void SyncAndResume()
129 SetThreadPriority( GetCurrentThread(), THREAD_PRIORITY_HIGHEST );
131 sched_param sch_params;
132 sch_params.sched_priority = sched_get_priority_max( SCHED_RR );
133 pthread_setschedparam( pthread_self(), SCHED_RR, &sch_params );
141 std::unique_lock<std::mutex> lock( _syncMutex );
144 _syncCondt.notify_all();
145 _resumeCondt.wait( lock );
161 for (
auto component : *_components )
163 component->TickSeries( _bufferNo );
171 std::vector<DSPatch::Component*>* _components =
nullptr;
174 bool _gotSync =
false;
175 std::mutex _syncMutex;
176 std::condition_variable _resumeCondt, _syncCondt;
Thread class for asynchronously ticking circuit components.