diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
commit | 0d0e9facfcea3cf96da3b63285865182fdd5477e (patch) | |
tree | cca42e7aab184cad981c794073a4376aa2616193 /code/core/posix/time.c | |
parent | 05e11f491b84a110b9ca08612df370b91e9bdcbc (diff) |
refatoring dirs
Diffstat (limited to 'code/core/posix/time.c')
-rw-r--r-- | code/core/posix/time.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/code/core/posix/time.c b/code/core/posix/time.c deleted file mode 100644 index c7a238a..0000000 --- a/code/core/posix/time.c +++ /dev/null @@ -1,24 +0,0 @@ -#include <unistd.h> -#include <sys/time.h> - -#include <core.h> - -static ecp_cts_t t_abstime_ms(ecp_cts_t msec) { - struct timeval tv; - ecp_cts_t ms_now; - - gettimeofday(&tv, NULL); - ms_now = tv.tv_sec * 1000 + tv.tv_usec / 1000; - return ms_now + msec; -} - -static void t_sleep_ms(ecp_cts_t msec) { - usleep(msec*1000); -} - -int ecp_time_init(ECPTimeIface *t) { - t->init = 1; - t->abstime_ms = t_abstime_ms; - t->sleep_ms = t_sleep_ms; - return 0; -} |