Changeset 46223 in vbox
- Timestamp:
- May 22, 2013 5:18:47 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85951
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/time-r0drv-nt.cpp
r44529 r46223 36 36 DECLINLINE(uint64_t) rtTimeGetSystemNanoTS(void) 37 37 { 38 #ifndef IPRT_TARGET_NT4 38 /* 39 * Note! The time source we use here must be exactly the same as in 40 * the ring-3 code! 41 */ 42 #if 0 43 # ifndef IPRT_TARGET_NT4 39 44 ULONGLONG InterruptTime = KeQueryInterruptTime(); 40 45 return (uint64_t)InterruptTime * 100; /* The value is in 100ns, convert to ns units. */ 41 # else46 # else 42 47 LARGE_INTEGER InterruptTime; 43 48 do … … 48 53 49 54 return (uint64_t)InterruptTime.QuadPart * 100; 55 # endif 56 #else 57 LARGE_INTEGER Tick; 58 KeQueryTickCount(&Tick); 59 return (uint64_t)Tick.QuadPart * KeQueryTimeIncrement() * 100; 50 60 #endif 51 61 } -
trunk/src/VBox/Runtime/r3/win/time-win.cpp
r28800 r46223 40 40 #include "internal/time.h" 41 41 42 /* 43 * Note! The selected time source be the exact same one as we use in kernel land! 44 */ 42 45 #define USE_TICK_COUNT 43 46 //#define USE_PERFORMANCE_COUNTER 44 #if 0//defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64)45 # define USE_INTERRUPT_TIME46 #else47 47 //# define USE_FILE_TIME 48 #endif 48 //#if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) 49 //# define USE_INTERRUPT_TIME 50 //#else 51 //# define USE_TICK_COUNT 52 //#endif 49 53 50 54 … … 115 119 * detection algorithm if necessary. The com debugger class 116 120 * exports this too, windbg knows it too... */ 117 s_pUserSharedData = ( MY_ KUSER_SHARED_DATA *)(uintptr_t)0x7ffe0000;121 s_pUserSharedData = (PMY_KUSER_SHARED_DATA)(uintptr_t)0x7ffe0000; 118 122 } 119 123
Note:
See TracChangeset
for help on using the changeset viewer.