aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/sleep_action.cpp
blob: 74977528dbc786ef60f3c91482602a794f46694a (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;
}