について私は私のコードに次の関数を使用しています:CPPでlinux:RDTSC
static __inline__ unsigned long long rdtsc(void){
unsigned long long int x;
__asm__ volatile (".byte 0x0f, 0x31" : "=A" (x));
return x;
}
は最後の起動以降ティックのこの関数の戻り値の数をしていますか? この機能に関するドキュメントはどこにありますか?
インテルのマニュアルを試しましたか? http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html –
また、単純なWikipediaの検索でこれが得られます - http://en.wikipedia.org/wiki/ Time_Stamp_Counter – mattjgalloway