Changeset 28459 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Apr 19, 2010 12:49:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/time-win.cpp
r26212 r28459 98 98 if (QueryPerformanceCounter(&ll)) 99 99 return (ll.QuadPart * uMult) / llFreq.QuadPart; 100 else 101 return (uint64_t)GetTickCount() * (uint64_t)1000000; 100 return (uint64_t)GetTickCount() * (uint64_t)1000000; 102 101 103 102 #elif defined USE_FILE_TIME … … 147 146 RTDECL(uint64_t) RTTimeSystemMilliTS(void) 148 147 { 149 return rtTimeGetSystemNanoTS() ;148 return rtTimeGetSystemNanoTS() / 1000000; 150 149 } 151 150
Note:
See TracChangeset
for help on using the changeset viewer.