0
29kviews
What is context switch ? Describe the actions taken by a kernel to context switch between processes
1 Answer
| written 6.6 years ago by | • modified 6.6 years ago |
Interrupt causes the operating system to change a CPU from its current task and to run a kernel routine.
When an interrupt occurs, the system need to save the current context of the process running on the CPU, so that it can later restore when needed.
Switching the CPU to …