pthread_common.c 857 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <ksched.h>
  8. #include <wait_q.h>
  9. #include <posix/time.h>
  10. #ifdef CONFIG_POSIX_CLOCK
  11. int64_t timespec_to_timeoutms(const struct timespec *abstime)
  12. {
  13. int64_t milli_secs, secs, nsecs;
  14. struct timespec curtime;
  15. /* FIXME: Zephyr does have CLOCK_REALTIME to get time.
  16. * As per POSIX standard time should be calculated wrt CLOCK_REALTIME.
  17. * Zephyr deviates from POSIX 1003.1 standard on this aspect.
  18. */
  19. clock_gettime(CLOCK_MONOTONIC, &curtime);
  20. secs = abstime->tv_sec - curtime.tv_sec;
  21. nsecs = abstime->tv_nsec - curtime.tv_nsec;
  22. if (secs < 0 || (secs == 0 && nsecs < NSEC_PER_MSEC)) {
  23. milli_secs = 0;
  24. } else {
  25. milli_secs = secs * MSEC_PER_SEC + nsecs / NSEC_PER_MSEC;
  26. }
  27. return milli_secs;
  28. }
  29. #endif /* CONFIG_POSIX_CLOCK */