The sched_get_priority_min function

Name

sched_get_priority_min -- 

Synopsis

#include <pthread.h>

int sched_get_priority_min (int policy);

Description

The sched_get_priority_min function returns the first value in the range of priorities for the given policy.

Returns

The sched_get_priority_min function returns the priority.

Implementation Notes

The range of priority is 0 .. 100. The lowest priority is 0. The highest priority is 100.
The value for policy must be SCHED_FIFO.