Searched defs:unix_time (Results 1 - 1 of 1) sorted by relevance

/external/fio/os/windows/
H A Dposix.c235 uint64_t unix_time, windows_time; local
249 unix_time = (((windows_time)/10000) - MILLISECONDS_BETWEEN_1601_AND_1970);
250 /* unix_time is now the number of milliseconds since 1970 (the Unix epoch) */
251 tp->tv_sec = unix_time / 1000;
252 tp->tv_usec = (unix_time % 1000) * 1000;

Completed in 155 milliseconds