blob: 7d921e1ec12d148777e83529b7bc8c2dd55d2c5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*!
*************************************************************************************
* \file win32.c
*
* \brief
* Platform dependent code
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Karsten Suehring <suehring@hhi.de>
*************************************************************************************
*/
#include "global.h"
#ifdef _WIN32
static LARGE_INTEGER freq;
void gettime(TIME_T* time)
{
QueryPerformanceCounter(time);
}
int64 timediff(TIME_T* start, TIME_T* end)
{
return (int64)((end->QuadPart - start->QuadPart));
}
int64 timenorm(int64 cur_time)
{
static int first = 1;
if(first)
{
QueryPerformanceFrequency(&freq);
first = 0;
}
return (int64)(cur_time * 1000 /(freq.QuadPart));
}
#else
static struct timezone tz;
void gettime(TIME_T* time)
{
gettimeofday(time, &tz);
}
int64 timediff(TIME_T* start, TIME_T* end)
{
int t1, t2;
t1 = end->tv_sec - start->tv_sec;
t2 = end->tv_usec - start->tv_usec;
return (int64) t2 + (int64) t1 * (int64) 1000000;
}
int64 timenorm(int64 cur_time)
{
return (int64)(cur_time / (int64) 1000);
}
#endif
|