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

Function filetime_to_seconds

src/engine/execnt.cpp:743–747  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

741 */
742
743static double filetime_to_seconds( FILETIME const ft )
744{
745 return ft.dwHighDateTime * ( (double)( 1UL << 31 ) * 2.0 * 1.0e-7 ) +
746 ft.dwLowDateTime * 1.0e-7;
747}
748
749
750static 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