sleep.c 542 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <posix/unistd.h>
  8. /**
  9. * @brief Sleep for a specified number of seconds.
  10. *
  11. * See IEEE 1003.1
  12. */
  13. unsigned sleep(unsigned int seconds)
  14. {
  15. k_sleep(K_SECONDS(seconds));
  16. return 0;
  17. }
  18. /**
  19. * @brief Suspend execution for microsecond intervals.
  20. *
  21. * See IEEE 1003.1
  22. */
  23. int usleep(useconds_t useconds)
  24. {
  25. if (useconds < USEC_PER_MSEC) {
  26. k_busy_wait(useconds);
  27. } else {
  28. k_msleep(useconds / USEC_PER_MSEC);
  29. }
  30. return 0;
  31. }