mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
17 lines
324 B
C
17 lines
324 B
C
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include "osfreq.c"
|
|
|
|
long long cpucycles_amd64cpuinfo(void)
|
|
{
|
|
unsigned long long result;
|
|
asm volatile(".byte 15;.byte 49;shlq $32,%%rdx;orq %%rdx,%%rax"
|
|
: "=a" (result) :: "%rdx");
|
|
return result;
|
|
}
|
|
|
|
long long cpucycles_amd64cpuinfo_persecond(void)
|
|
{
|
|
return osfreq();
|
|
}
|