1# Copyright (c) 2023 Intel Corporation 2# 3# SPDX-License-Identifier: Apache-2.0 4 5menu "POSIX scheduler options" 6 7config POSIX_PRIORITY_SCHEDULING 8 bool "POSIX priority-based process scheduling" 9 help 10 This enables POSIX scheduling APIs (_POSIX_PRIORITY_SCHEDULING). 11 12 Since Zephyr does not yet support processes, most of this behaviour is undefined, except for 13 use of sched_get_priority_min() and sched_get_priority_max(). 14 15 For more information, please see 16 https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04 17 https://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_max.html 18 19endmenu 20