Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • 2
    Getting exactly-known execution time on modern x86 (to avoid timing jitter as @Brian H commented) could means burning a lot of those very short clock cycles checking an accurate timesource to make the normal case run at the same speed as the worst case for cache misses, branch mispredicts, or whatever. e.g. this rdtsc deadline spin loop (under a non-Linux OS, or on an isolated core). Commented Oct 17, 2020 at 14:41