| * Copyright (c) 2018 Intel Corporation |
| * SPDX-License-Identifier: Apache-2.0 |
| struct timespec it_interval; /* Timer interval */ |
| struct timespec it_value; /* Timer expiration */ |
| #define CLOCK_MONOTONIC 1 |
| #define NSEC_PER_MSEC (NSEC_PER_USEC * USEC_PER_MSEC) |
| static inline s32_t _ts_to_ms(const struct timespec *to) |
| return (to->tv_sec * MSEC_PER_SEC) + (to->tv_nsec / NSEC_PER_MSEC); |
| static inline int clock_settime(clockid_t clock_id, const struct timespec *ts) |
| int clock_gettime(clockid_t clock_id, struct timespec *ts); |
| int timer_create(clockid_t clockId, struct sigevent *evp, timer_t *timerid); |
| int timer_delete(timer_t timerid); |
| int timer_gettime(timer_t timerid, struct itimerspec *its); |
| int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, |
| struct itimerspec *ovalue); |
| #endif /* __POSIX_TIME_H__ */ |