Changeset 54320 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Feb 19, 2015 11:05:20 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/tstSupTscDelta.cpp
r54306 r54320 104 104 for (uint32_t i = 0; i < pGip->cCpus; i++) 105 105 { 106 aCpuStats[i].iLowest = INT64_MAX; 107 aCpuStats[i].uAbsMin = UINT64_MAX; 106 aCpuStats[i].iLowest = INT64_MAX; 107 aCpuStats[i].iHighest = INT64_MIN; 108 aCpuStats[i].uAbsMin = UINT64_MAX; 108 109 } 109 110 … … 175 176 */ 176 177 RTPrintf("tstSupTscDelta: Results:\n"); 177 int64_t iLowest = 0;178 int64_t iHighest = 0;178 int64_t iLowest = INT64_MAX; 179 int64_t iHighest = INT64_MIN; 179 180 int64_t iTotal = 0; 180 181 uint32_t cTotal = 0;
Note:
See TracChangeset
for help on using the changeset viewer.