"Richard B. Johnson" wrote:
>
>I think it's a math problem in the test code. Try this:
>
[code deleted]
>
>Note that two subsequent calls to gettimeofday() must not return the
>same time even if your CPU runs infinitely fast. I haven't seen any
>kernel in the past few years that fails this test.
I find that claim to be pretty ridiculous, I have never seen such a
thing in any standard. I was writing code allowing the for '='
condition five years ago, because I was assuming that it might live
long enough for this sort of thing to start happening. Simple defensive
programming (probably smart even if POSIX was to declare this to be
the case)
So then I was I was curious if I could find any systems fast enough to
violate this. I didn't have to look far, my new laptop with a 600MHz
Pentium III (running kernel 2.2.16, not that it matters) hits the "break"
in your program (i.e., same time from the two gettimeofday() calls) every
single time I run it. If I add another identical call to gettimeofday()
immediately after the second one, that makes the result of the (now)
third call 1us greater so the code loops as you intended.
What you claim may have been true due to the inability of CPUs to execute
two system calls within a microsecond, but that horse has now left the
barn. You will need to request a getnanotimeofday() be created if you
want to allow two consecutive calls to always return different values
(modulo SMP systems and ~13 more years of Moore's Law)
--
Douglas Siebert
[email protected]
A computer without Microsoft software is like chocolate cake without ketchup.
> barn. You will need to request a getnanotimeofday() be created if you
> want to allow two consecutive calls to always return different values
> (modulo SMP systems and ~13 more years of Moore's Law)
Or you use rdtsc instructions for x86. There intel do guarantee that no two
rdtsc's execute in parallel on the same cpu and it counts in cpu clocks.
Unfortunately rdtsc is only on newer x86 cpus and not useful in some smp
configurations