sched_get_priority_max(2) System Calls Manual sched_get_priority_max(2) NAZWA sched_get_priority_max, sched_get_priority_min - pobranie zakresu priorytetow statycznych BIBLIOTEKA Standardowa biblioteka C (libc, -lc) SKLADNIA #include int sched_get_priority_max(int policy); int sched_get_priority_min(int policy); OPIS sched_get_priority_max() returns the maximum priority value that can be used with the scheduling algorithm identified by policy. sched_get_priority_min() returns the minimum priority value that can be used with the scheduling algorithm identified by policy. Supported policy values are SCHED_FIFO, SCHED_RR, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE, and SCHED_DEADLINE. Further details about these policies can be found in sched(7). Procesy o wyzszych wartosciach priorytetow szeregowane sa przed tymi, ktore maja nizsze wartosci. Tak wiec wartosc zwracana przez sched_get_priority_max() bedzie wieksza niz wartosc zwracana przez sched_get_priority_min(). Linux allows the static priority range 1 to 99 for the SCHED_FIFO and SCHED_RR policies, and the priority 0 for the remaining policies. Scheduling priority ranges for the various policies are not alterable. Zakres priorytetow szeregowania moze sie roznic na innych systemach POSIX-owych, wiec dla przenosnych aplikacji dobrze jest uzywac wirtualnego zakresu priorytetu i mapowac go na przedzial okreslony przez sched_get_priority_max() i sched_get_priority_min. POSIX.1 wymaga odstepu co najmniej 32 miedzy maksymalnymi i minimalnymi wartosciami dla SCHED_FIFO i SCHED_RR. Systemy POSIX-owe, na ktorych dostepne sa sched_get_priority_max() i sched_get_priority_min definiuja w _POSIX_PRIORITY_SCHEDULING. WARTOSC ZWRACANA On success, sched_get_priority_max() and sched_get_priority_min() return the maximum/minimum priority value for the named scheduling policy. On error, -1 is returned, and errno is set to indicate the error. BLEDY EINVAL The argument policy does not identify a defined scheduling policy. STANDARDY POSIX.1-2008. HISTORIA POSIX.1-2001. ZOBACZ TAKZE sched_getaffinity(2), sched_getparam(2), sched_getscheduler(2), sched_setaffinity(2), sched_setparam(2), sched_setscheduler(2), sched(7) TLUMACZENIE Autorami polskiego tlumaczenia niniejszej strony podrecznika sa: Przemek Borys Niniejsze tlumaczenie jest wolna dokumentacja. Blizsze informacje o warunkach licencji mozna uzyskac zapoznajac sie z GNU General Public License w wersji 3 lub nowszej. Nie przyjmuje sie ZADNEJ ODPOWIEDZIALNOSCI. Bledy w tlumaczeniu strony podrecznika prosimy zglaszac na adres listy dyskusyjnej . Linux man-pages 6.06 31 pazdziernika 2023 r. sched_get_priority_max(2)