Home
last modified time | relevance | path

Searched refs:t_Demod (Results 1 – 2 of 2) sorted by relevance

/dports/comms/cubicsdr/CubicSDR-0248e5a/src/demod/
H A DDemodulatorInstance.cpp144 pthread_create(&t_Demod, &attr, &DemodulatorThread::pthread_helper, demodulatorThread); in run()
151 t_Demod = new std::thread(&DemodulatorThread::threadMain, demodulatorThread); in run()
231 if (t_Demod) { in isTerminated()
233 pthread_join(t_Demod, nullptr); in isTerminated()
235 t_Demod->join(); in isTerminated()
236 delete t_Demod; in isTerminated()
238 t_Demod = nullptr; in isTerminated()
H A DDemodulatorInstance.h41 pthread_t t_Demod; variable
44 std::thread *t_Demod = nullptr;