In linux kenel process scheduler there is a priority type SCHED_FIFO. I want to change the scheduling policy. I have two questions:
1- Where, in the kernel source code, is it mentioned that after a tick the cpu should belong to the interrupted process(Because in FIFO the process should remain until it finishes)?
2- In SCHED_RR where the interrupted process is inserted at the end of the waiting queue again?
I use 2.6.31 kernel
Thank you.