View Issue Details

IDProjectCategoryView StatusLast Update
0003247FSVybridKernelpublic2018-04-04 08:45
Reporterzutter Assigned To 
PrioritynormalSeveritymajorReproducibilityhave not tried
Status newResolutionopen 
Product VersionV2.7 
Target VersionV3.0 
Summary0003247: QueryPerformanceCounter may block
DescriptionQueryPerformanceCounter may block
Steps To Reproduce Obvious incorrect:
      pCounter->HighPart = INREG32(&g_pMPGPTRegs->CNTH);
        do
        {
            pCounter->LowPart = INREG32(&g_pMPGPTRegs->CNTL);
        }
        while (!(pCounter->HighPart == (LONG)INREG32(&g_pMPGPTRegs->CNTH)));
Change to:
      
        do
        {
            pCounter->HighPart = INREG32(&g_pMPGPTRegs->CNTH);
            pCounter->LowPart = INREG32(&g_pMPGPTRegs->CNTL);
        }
        while (!(pCounter->HighPart == (LONG)INREG32(&g_pMPGPTRegs->CNTH)));
Found Driver Version
Fixed Driver Version
Forum Link

Activities

There are no notes attached to this issue.