mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
16 lines
265 B
C
16 lines
265 B
C
|
#include <stdio.h>
|
||
|
#include <sys/types.h>
|
||
|
#include "osfreq.c"
|
||
|
|
||
|
long long cpucycles_x86cpuinfo(void)
|
||
|
{
|
||
|
long long result;
|
||
|
asm volatile(".byte 15;.byte 49" : "=A" (result));
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
long long cpucycles_x86cpuinfo_persecond(void)
|
||
|
{
|
||
|
return osfreq();
|
||
|
}
|