Changeset 53477 in vbox for trunk/src/VBox
- Timestamp:
- Dec 8, 2014 11:22:27 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97208
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r53476 r53477 46 46 #include <iprt/spinlock.h> 47 47 #include <iprt/thread.h> 48 #include <iprt/uint128.h>49 48 #include <iprt/uuid.h> 50 49 #include <iprt/net.h> … … 56 55 # include <iprt/path.h> 57 56 #endif 58 /*#include <iprt/uint128.h> - probably needs exporting. */ 57 #include <iprt/uint128.h> 59 58 #include <iprt/x86.h> 60 59 … … 3941 3940 * 3942 3941 * The idea is that more interrupts is better for us... Also, it's better than 3943 * we increase the timer frequence, because we might end up getting inaccura ct3942 * we increase the timer frequence, because we might end up getting inaccurate 3944 3943 * callbacks if someone else does it. 3945 3944 * … … 6179 6178 pGip->u64CpuHz = CpuHz.s.Lo; 6180 6179 #else 6180 /** @todo remove later */ 6181 6181 /* Try not to lose precision, the larger the interval the more likely we overflow. */ 6182 6182 if ( u64DeltaTsc < UINT64_MAX / RT_NS_100MS
Note:
See TracChangeset
for help on using the changeset viewer.