The Gaudi Framework  v30r3 (a5ef0a68)
Sleep.cpp
Go to the documentation of this file.
1 #include "GaudiKernel/Sleep.h"
2 #include <chrono>
3 #include <thread>
4 
5 namespace Gaudi
6 {
7 
8  void Sleep( int sec ) { std::this_thread::sleep_for( std::chrono::seconds( sec ) ); }
9 
10  void NanoSleep( long long nsec ) { std::this_thread::sleep_for( std::chrono::nanoseconds( nsec ) ); }
11 }
T sleep_for(T...args)
GAUDI_API void NanoSleep(long long nsec)
Small variation on the sleep function for nanoseconds sleep.
Definition: Sleep.cpp:10
GAUDI_API void Sleep(int sec)
Simple sleep function.
Definition: Sleep.cpp:8
Helper functions to set/get the application return code.
Definition: __init__.py:1