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

Function creation_time

src/engine/execnt.cpp:1020–1029  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1018
1019
1020static double creation_time( HANDLE const process )
1021{
1022 FILETIME creation;
1023 FILETIME exit;
1024 FILETIME kernel;
1025 FILETIME user;
1026 return GetProcessTimes( process, &creation, &exit, &kernel, &user )
1027 ? filetime_to_seconds( creation )
1028 : 0.0;
1029}
1030
1031
1032/*

Callers 1

execnt.cppFile · 0.85

Calls 1

filetime_to_secondsFunction · 0.85

Tested by

no test coverage detected