mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 16:05:07 +00:00
12 lines
234 B
C
12 lines
234 B
C
|
#include <sys/time.h>
|
||
|
#include "system_header.h"
|
||
|
|
||
|
int time_get_ms()
|
||
|
{
|
||
|
static struct timeval tv;
|
||
|
gettimeofday(&tv, NULL);
|
||
|
long long time_in_mill = (tv.tv_sec) * 1000 + (tv.tv_usec) / 1000;
|
||
|
|
||
|
return (int) time_in_mill;
|
||
|
}
|