Is there a virtual/system clock running independently when a computer is booted?

How can we read that value?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use the RDTSC x86 instruction, it reads the clocks since the system-start.

link|improve this answer
can i use that for my intel x86 board..?/ – pvaju896 Jul 15 '10 at 8:12
x86 is no board, its the instructionset of the cpu. And yes, its an x86 instruction. – Quonux Jul 15 '10 at 8:22
+1 I use the processor time counter very frequently to benchmark code. It's much more precise than the system time functions. – Borealid Jul 15 '10 at 8:34
@Quonox: rdtsc is not just "an x86 instruction" it first appeared with either the Pentium or the Pentium MMX processor, I can't remember which (Wikipedia knows). It did not exist for anything before that, including the 32-bit processors 80386 and 80486. – Olof Forshell Feb 28 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.