Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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  void Sleep( int sec ) { std::this_thread::sleep_for( std::chrono::seconds( sec ) ); }
8 
9  void NanoSleep( long long nsec ) { std::this_thread::sleep_for( std::chrono::nanoseconds( nsec ) ); }
10 } // namespace Gaudi
T sleep_for(T...args)
GAUDI_API void NanoSleep(long long nsec)
Small variation on the sleep function for nanoseconds sleep.
Definition: Sleep.cpp:9
GAUDI_API void Sleep(int sec)
Simple sleep function.
Definition: Sleep.cpp:7
Helper functions to set/get the application return code.
Definition: __init__.py:1