I’m new to kernel programming and was thinking on how one can make single process running which means that other kernel processes should die or get starved. What can be optimal approach to this situation. I’m working on kernel version 2.6.38.
Share
while (1);should do a good job of starving other processes – especially if you first disable interrupts.