]>
git.saurik.com Git - apple/system_cmds.git/blob - kdprof/SleepAction.cpp
5 // Created by James McIlree on 4/17/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
11 void SleepAction::execute(Globals
& globals
) {
12 uint64_t nanos
= _time
.value();
14 ts
.tv_sec
= decltype(ts
.tv_sec
)(nanos
/ NANOSECONDS_PER_SECOND
);
15 ts
.tv_nsec
= decltype(ts
.tv_sec
)(nanos
- ts
.tv_sec
* NANOSECONDS_PER_SECOND
);