You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#define _POSIX_C_SOURCE 200809L
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#include "util/time.h"
|
|
|
|
uint32_t get_current_time_msec(void) {
|
|
struct timespec now;
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
return now.tv_sec * 1000 + now.tv_nsec / 1000000;
|
|
}
|