pthread_sched.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <posix/posix_sched.h>
  8. static bool valid_posix_policy(int policy)
  9. {
  10. if (policy != SCHED_FIFO && policy != SCHED_RR) {
  11. return false;
  12. }
  13. return true;
  14. }
  15. /**
  16. * @brief Get minimum priority value for a given policy
  17. *
  18. * See IEEE 1003.1
  19. */
  20. int sched_get_priority_min(int policy)
  21. {
  22. if (valid_posix_policy(policy) == false) {
  23. errno = EINVAL;
  24. return -1;
  25. }
  26. if (IS_ENABLED(CONFIG_COOP_ENABLED)) {
  27. if (policy == SCHED_FIFO) {
  28. return 0;
  29. }
  30. }
  31. if (IS_ENABLED(CONFIG_PREEMPT_ENABLED)) {
  32. if (policy == SCHED_RR) {
  33. return 0;
  34. }
  35. }
  36. errno = EINVAL;
  37. return -1;
  38. }
  39. /**
  40. * @brief Get maximum priority value for a given policy
  41. *
  42. * See IEEE 1003.1
  43. */
  44. int sched_get_priority_max(int policy)
  45. {
  46. if (valid_posix_policy(policy) == false) {
  47. errno = EINVAL;
  48. return -1;
  49. }
  50. if (IS_ENABLED(CONFIG_COOP_ENABLED)) {
  51. if (policy == SCHED_FIFO) {
  52. /* Posix COOP priority starts from 0
  53. * whereas zephyr starts from -1
  54. */
  55. return (CONFIG_NUM_COOP_PRIORITIES - 1);
  56. }
  57. }
  58. if (IS_ENABLED(CONFIG_PREEMPT_ENABLED)) {
  59. if (policy == SCHED_RR) {
  60. return CONFIG_NUM_PREEMPT_PRIORITIES;
  61. }
  62. }
  63. errno = EINVAL;
  64. return -1;
  65. }