This commit is contained in:
davidpanderson 2022-07-29 22:31:43 -07:00
parent ac52f73953
commit 8f6e800277
1 changed files with 1 additions and 2 deletions

View File

@ -159,6 +159,5 @@ double total_cpu_time() {
ULARGE_INTEGER x;
x.LowPart = u.dwLowDateTime;
x.HighPart = u.dwHighDateTime;
user = (double)x.QuadPart/1e7;
return user;
return (double)x.QuadPart/1e7;
}