Fix bug 'negative values' in GET_TIME_MS()
This commit is contained in:
parent
d8952223f4
commit
aaf4eb398a
@ -50,4 +50,4 @@
|
|||||||
// macro to get time in milliseconds
|
// macro to get time in milliseconds
|
||||||
#define GET_TIME_MS() get_current_time()
|
#define GET_TIME_MS() get_current_time()
|
||||||
// defined in common.c due to differences with windows and other systems
|
// defined in common.c due to differences with windows and other systems
|
||||||
uint64_t get_current_time();
|
int64_t get_current_time();
|
29
src/common.c
29
src/common.c
@ -6,21 +6,36 @@
|
|||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
|
|
||||||
//============================
|
//============================
|
||||||
//==== get_current_time() ====
|
//==== get_current_time() ====
|
||||||
//============================
|
//============================
|
||||||
// Function that returns current time in milliseconds (can be used on windows and other systems)
|
// Function that returns current time in milliseconds (can be used on windows and other systems)
|
||||||
uint64_t get_current_time() {
|
int64_t get_current_time()
|
||||||
#ifdef _WIN32
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
//=== WINDOWS ===
|
||||||
FILETIME ft;
|
FILETIME ft;
|
||||||
|
LARGE_INTEGER li;
|
||||||
|
// Get the amount of 100 nano seconds intervals elapsed since January 1, 1601 (UTC) and copy it to a LARGE_INTEGER structure.
|
||||||
GetSystemTimeAsFileTime(&ft);
|
GetSystemTimeAsFileTime(&ft);
|
||||||
ULARGE_INTEGER uli;
|
li.LowPart = ft.dwLowDateTime;
|
||||||
uli.LowPart = ft.dwLowDateTime;
|
li.HighPart = ft.dwHighDateTime;
|
||||||
uli.HighPart = ft.dwHighDateTime;
|
uint64_t ret = li.QuadPart;
|
||||||
return uli.QuadPart / 10000; // convert 100-nanoseconds to milliseconds
|
ret -= 116444736000000000LL; // Convert from file time to UNIX epoch time.
|
||||||
|
ret /= 10000; // From 100 nano seconds (10^-7) to 1 millisecond (10^-3) intervals
|
||||||
|
return ret;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
//=== LINUX ===
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
return (uint64_t)tv.tv_sec * 1000 + tv.tv_usec / 1000; // convert microseconds to milliseconds
|
uint64_t ret = tv.tv_usec;
|
||||||
|
// Convert from micro seconds (10^-6) to milliseconds (10^-3)
|
||||||
|
ret /= 1000;
|
||||||
|
// Adds the seconds (10^0) after converting them to milliseconds (10^-3)
|
||||||
|
ret += (tv.tv_sec * 1000);
|
||||||
|
return ret;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user