MCPcopy Create free account
hub / github.com/boostorg/build / filetime_to_seconds

Function filetime_to_seconds

v2/engine/execnt.c:675–679  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

673 */
674
675static double filetime_to_seconds( FILETIME const ft )
676{
677 return ft.dwHighDateTime * ( (double)( 1UL << 31 ) * 2.0 * 1.0e-7 ) +
678 ft.dwLowDateTime * 1.0e-7;
679}
680
681
682static void record_times( HANDLE const process, timing_info * const time )

Callers 3

record_timesFunction · 0.85
running_timeFunction · 0.85
creation_timeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected