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

Function creation_time

v2/engine/execnt.c:920–929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

918
919
920static double creation_time( HANDLE const process )
921{
922 FILETIME creation;
923 FILETIME exit;
924 FILETIME kernel;
925 FILETIME user;
926 return GetProcessTimes( process, &creation, &exit, &kernel, &user )
927 ? filetime_to_seconds( creation )
928 : 0.0;
929}
930
931
932/*

Callers 1

is_parent_childFunction · 0.85

Calls 1

filetime_to_secondsFunction · 0.85

Tested by

no test coverage detected