Updated: October 28, 2024 |
Set a thread's priority
#include <pthread.h> int pthread_setschedprio( pthread_t thread, int prio );
As an extension to POSIX in QNX Neutrino 6.6 or later, you can wrap the new priority in one these macros to specify how to handle out-of-range priority requests:
If procnto was started with a -P option ending with s or S, out-of-range priority requests by default saturate at the maximum allowed value.
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_setschedprio() function sets the priority of thread thread to prio.
If the thread is running or runnable, the effect on its position in the ready queue depends on the direction of the modification:
The pthread_setschedprio() function gives you a way to temporarily raise a thread's priority and lower it again, without yielding to other threads of the same priority. This is necessary if you have to implement your own strategies for bounding priority inversion, such as priority inheritance or priority ceilings.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |