sleep_action.cpp 279 B

123456789101112131415
  1. #include "sleep_action.h"
  2. #include "control.h"
  3. #include <util/system/datetime.h>
  4. #include <stdlib.h>
  5. using namespace NLWTrace;
  6. using namespace NLWTrace::NPrivate;
  7. bool TSleepActionExecutor::DoExecute(TOrbit&, const TParams&) {
  8. NanoSleep(NanoSeconds);
  9. return true;
  10. }