posix_sched.h 757 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_POSIX_SCHED_H_
  7. #define ZEPHYR_INCLUDE_POSIX_POSIX_SCHED_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /* Cooperative scheduling policy */
  12. #ifndef SCHED_FIFO
  13. #define SCHED_FIFO 0
  14. #endif /* SCHED_FIFO */
  15. /* Priority based preemptive scheduling policy */
  16. #ifndef SCHED_RR
  17. #define SCHED_RR 1
  18. #endif /* SCHED_RR */
  19. struct sched_param {
  20. int sched_priority;
  21. };
  22. /**
  23. * @brief Yield the processor
  24. *
  25. * See IEEE 1003.1
  26. */
  27. static inline int sched_yield(void)
  28. {
  29. k_yield();
  30. return 0;
  31. }
  32. int sched_get_priority_min(int policy);
  33. int sched_get_priority_max(int policy);
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* ZEPHYR_INCLUDE_POSIX_POSIX_SCHED_H_ */