What is context switching
Anonimo
In operating systems when multiple processes are being run on a single processore, and the user or os specifies that it wants to switch processes its called a context switch. The old process gets its "state" saved in memory and gets push onto a ready queue. When the OS or the user is ready to start running it again it gets poped off the ready queue and starts running again. Another context switch.