Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / cpucycles / x86cpuinfo.c
blob3fb0a1b07466ff54f1ce8ca8dd968570bd03ae6a
1 #include <stdio.h>
2 #include <sys/types.h>
3 #include "osfreq.c"
5 long long cpucycles_x86cpuinfo(void)
7 long long result;
8 asm volatile(".byte 15;.byte 49" : "=A" (result));
9 return result;
12 long long cpucycles_x86cpuinfo_persecond(void)
14 return osfreq();