void AAPIO::open() {
	Gate g(this, "open()");
	QMutexLocker theadLock(&threadMutex);
	if (select != NULL) {
		select->close();
		select = NULL;
	}
	select = new AAPIOSelect(this, scope, blueToothManager);
	select->start();
}
Exemple #2
0
void cAnalyzer::SetPath(const cPath& p)
{
    cThreadLock theadLock(this);
    path = p;
}