merged with master

This commit is contained in:
badaix 2016-11-17 15:47:23 +01:00
commit 8bd5361081
64 changed files with 1481 additions and 275 deletions

View file

@ -192,7 +192,7 @@ int main (int argc, char **argv)
{
logS(kLogErr) << "Exception: " << e.what() << std::endl;
}
usleep(500*1000);
chronos::sleep(500);
}
#endif
}
@ -203,7 +203,7 @@ int main (int argc, char **argv)
logO << "Latency: " << latency << "\n";
controller->start(pcmDevice, host, port, latency);
while(!g_terminated)
usleep(100*1000);
chronos::sleep(100);
controller->stop();
}
}