Can this lead to an issue similar to priority inversion

98 Views Asked by At

My project has a practice of reducing the priority of the thread while writing to a file and changing it back after the write operation is complete. This is done because the file write operation could take up important resources, time and restrict other important threads from carrying on its tasks.

But, imagine my thread is running at a priority of 30. During the file write operation I change the priority to 5. Does this not mean that an other thread having a priority of 10 can block my thread which normally would have a priority of 30.

I understand that this sounds like priority inversion but during my study, a priority inversion scenario typically has a critical section involved but my scenario doesn't involve one. Our applications use RR scheduling policy but the operating system(QNX) uses both RR and FIFO. Any help is appreciated.

1

There are 1 best solutions below

0
On

A scenario for priority inversion is only then given, when your task with prio 10 also wants to use the file and the task with prio 5 blocks the resource. Or the task with prio 10 is blocked by the task with prio 5 in any other way.

I see why you would want to lower the prio of a task using IO to write a file. So you don't lock you system with waits for IO operations. But if you want to prevent the prio inversion, you have to increase the priority when a higher prio task wants to excess the same file.