OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sleep_timeout_ns
(Results
1 - 1
of
1
) sorted by null
/system/extras/libperfmgr/
NodeLooperThread.cc
106
nsecs_t
sleep_timeout_ns
= std::numeric_limits<nsecs_t>::max();
local
107
if (timeout_ms.count() <
sleep_timeout_ns
/ 1000 / 1000) {
108
sleep_timeout_ns
= timeout_ms.count() * 1000 * 1000;
111
LOG(VERBOSE) << "NodeLooperThread will wait for " <<
sleep_timeout_ns
113
wake_cond_.waitRelative(lock_,
sleep_timeout_ns
);
Completed in 197 milliseconds