MCPcopy Create free account
hub / github.com/Kitware/CMake / kwsysProcessTimeGetCurrent

Function kwsysProcessTimeGetCurrent

Source/kwsys/ProcessWin32.c:2015–2023  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2013}
2014
2015kwsysProcessTime kwsysProcessTimeGetCurrent()
2016{
2017 kwsysProcessTime current;
2018 FILETIME ft;
2019 GetSystemTimeAsFileTime(&ft);
2020 current.LowPart = ft.dwLowDateTime;
2021 current.HighPart = ft.dwHighDateTime;
2022 return current;
2023}
2024
2025DWORD kwsysProcessTimeToDWORD(kwsysProcessTime t)
2026{

Callers 5

kwsysProcess_ExecuteFunction · 0.70
kwsysProcess_WaitForDataFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…