VirtualBox

Changes between Version 3 and Version 4 of Ticket #12076, comment 11


Ignore:
Timestamp:
Feb 16, 2014 12:52:56 PM (10 years ago)
Author:
Petr Vones

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12076, comment 11

    v3 v4  
    1 I can confirm the issue with 4.3.6. The counter sometimes goes backward and it happens once in a 10 minute period as the previous comment says. Reproducible for both 32 and 64 bit processes but it seems to be more often for 64 bit ones (?)
     1I can confirm the issue with 4.3.6. The counter goes backward and it happens once in a 10 minute period as the previous comment says. Reproducible for both 32 and 64 bit processes but it seems to be more often for 64 bit ones (?)
    22
    33Host: Windows 7 x64[[BR]]
     
    2323      {
    2424        Thread.Sleep(2);
    25         long diff = sw.ElapsedTicks - lastValue;
     25        long elapsed = sw.ElapsedTicks;
     26        long diff = elapsed - lastValue;
    2627        if (diff <= 0)
    2728          Console.WriteLine("Loop: {0}, Error diff: {1}", i, diff);
     29        lastValue = elapsed;
    2830      }
    2931      sw.Stop();
     
    3234  }
    3335}
     36
    3437}}}

© 2023 Oracle
ContactPrivacy policyTerms of Use