mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-26 08:11:09 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
33 lines
586 B
C
33 lines
586 B
C
#include <time.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/time.h>
|
|
#include <sys/types.h>
|
|
#include "osfreq.c"
|
|
|
|
static double cpufrequency = 0;
|
|
|
|
static void init(void)
|
|
{
|
|
cpufrequency = osfreq();
|
|
}
|
|
|
|
long long cpucycles_gettimeofday(void)
|
|
{
|
|
double result;
|
|
struct timeval t;
|
|
if (!cpufrequency) init();
|
|
gettimeofday(&t,(struct timezone *) 0);
|
|
result = t.tv_usec;
|
|
result *= 0.000001;
|
|
result += (double) t.tv_sec;
|
|
result *= cpufrequency;
|
|
return result;
|
|
}
|
|
|
|
long long cpucycles_gettimeofday_persecond(void)
|
|
{
|
|
if (!cpufrequency) init();
|
|
return cpufrequency;
|
|
}
|