зеркало из https://github.com/mozilla/pjs.git
Bug 115865: our code only uses the lower 32 bits of the result of
QueryPerformanceFrequency, so assert that the higher 32 bits are all zeros.
This commit is contained in:
Родитель
f8be7e55eb
Коммит
0b0539f6b9
|
@ -55,6 +55,7 @@ _PR_MD_INTERVAL_INIT()
|
|||
LARGE_INTEGER count;
|
||||
|
||||
if (QueryPerformanceFrequency(&count)) {
|
||||
PR_ASSERT(count.HighPart == 0);
|
||||
while(count.LowPart > PR_INTERVAL_MAX) {
|
||||
count.LowPart >>= 1;
|
||||
_nt_bitShift++;
|
||||
|
|
Загрузка…
Ссылка в новой задаче