diff options
Diffstat (limited to 'code/posix/time.c')
-rw-r--r-- | code/posix/time.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/code/posix/time.c b/code/posix/time.c deleted file mode 100644 index 3dd3920..0000000 --- a/code/posix/time.c +++ /dev/null @@ -1,24 +0,0 @@ -#include <unistd.h> -#include <sys/time.h> - -#include <core.h> - -static unsigned int t_abstime_ms(unsigned int msec) { - struct timeval tv; - unsigned int ms_now; - - gettimeofday(&tv, NULL); - ms_now = tv.tv_sec * 1000 + tv.tv_usec / 1000; - return ms_now + msec; -} - -static void t_sleep_ms(unsigned int 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; -} |