31#include <dspatch/Circuit.h>
33#include <condition_variable>
75 _thread = std::thread( &AutoTickThread::_Run,
this );
82 if ( _thread.joinable() )
90 if ( !_stopped && ++pauseCount == 1 )
92 std::unique_lock<std::mutex> lock( _resumeMutex );
94 _pauseCondt.wait( lock );
100 if ( _pause && --pauseCount == 0 )
103 _resumeCondt.notify_all();
118 std::unique_lock<std::mutex> lock( _resumeMutex );
120 _pauseCondt.notify_all();
121 _resumeCondt.wait( lock );
134 bool _stopped =
true;
135 std::mutex _resumeMutex;
136 std::condition_variable _resumeCondt, _pauseCondt;
Workspace for adding and routing components.
Thread class for auto-ticking a circuit.