OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sleep_time_usecs
(Results
1 - 1
of
1
) sorted by null
/external/libchrome/base/process/
process_posix.cc
69
int64_t
sleep_time_usecs
= (wakeup_time - now).InMicroseconds();
local
71
if (
sleep_time_usecs
> max_sleep_time_usecs)
72
sleep_time_usecs
= max_sleep_time_usecs;
76
usleep(
sleep_time_usecs
);
Completed in 75 milliseconds