17 void Sleep(
int sec ) { std::this_thread::sleep_for( std::chrono::seconds( sec ) ); }
19 void NanoSleep(
long long nsec ) { std::this_thread::sleep_for( std::chrono::nanoseconds( nsec ) ); }
This file provides a Grammar for the type Gaudi::Accumulators::Axis It allows to use that type from p...
GAUDI_API void Sleep(int sec)
Simple sleep function.
GAUDI_API void NanoSleep(long long nsec)
Small variation on the sleep function for nanoseconds sleep.