summaryrefslogtreecommitdiff
path: root/ecp/src/platform/posix/time.c
blob: efee4f8ff2ebae50bbef53d9c9cdd4fc3d12ae3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>

#include <core.h>
#include <tm.h>

int ecp_tm_init(ECPContext *ctx) {
    return ECP_OK;
}

ecp_sts_t ecp_tm_abstime_ms(ecp_sts_t msec) {
    struct timeval tv;
    ecp_sts_t ms_now;

    gettimeofday(&tv, NULL);
    ms_now = tv.tv_sec * 1000 + tv.tv_usec / 1000;
    return ms_now + msec;
}

void ecp_tm_sleep_ms(ecp_sts_t msec) {
    usleep(msec*1000);
}

void ecp_tm_timer_set(ecp_sts_t next) {}