fixed get_current_time()

This commit is contained in:
wangyu- 2017-11-24 11:05:13 -06:00
parent 3bc07d5c86
commit b35edf7486

@ -16,7 +16,7 @@ u64_t get_current_time()
{ {
timespec tmp_time; timespec tmp_time;
clock_gettime(CLOCK_MONOTONIC, &tmp_time); clock_gettime(CLOCK_MONOTONIC, &tmp_time);
return tmp_time.tv_sec*1000+tmp_time.tv_nsec/(1000*1000l); return ((u64_t)tmp_time.tv_sec)*1000llu+((u64_t)tmp_time.tv_nsec)/(1000*1000llu);
} }
u64_t pack_u64(u32_t a,u32_t b) u64_t pack_u64(u32_t a,u32_t b)