-rw-r--r-- 286 djbsort-20180717/cpucycles/x86cpuinfo/cpucycles.c
#include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include "osfreq.c" #include "cpucycles.h" long long cpucycles(void) { long long result; asm volatile(".byte 15;.byte 49" : "=A" (result)); return result; } long long cpucycles_persecond(void) { return osfreq(); }