aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/sleep_action.cpp
blob: ebcafa7d7499af40353ed41d7b03c124bfd95342 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "sleep_action.h" 

#include "control.h"
 
#include <util/system/datetime.h>

#include <stdlib.h> 
 
using namespace NLWTrace;
using namespace NLWTrace::NPrivate;

bool TSleepActionExecutor::DoExecute(TOrbit&, const TParams&) {
    NanoSleep(NanoSeconds);
    return true;
}