mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-23 15:02:27 +00: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();
|
||
|
}
|