Previous The rdtsc files |
Parent The rdtsc files |
Outline | Next The source (timer.cpp) |
1 2 3 4 5 6 7 8 9 10 |
#ifndef __TIMER_H__ #define __TIMER_H__ #ifdef __i386 extern long unsigned int rdtsc(void); #elif defined __amd64 extern long unsigned int rdtsc(void); #endif #endif |
Previous The rdtsc files |
Parent The rdtsc files |
Outline | Next The source (timer.cpp) |