What mechanism allows the kernel to regain control of the CPU, even when the current process has yet to complete its current burst?
时间: 2024-05-23 13:16:36 浏览: 133
The mechanism that allows the kernel to regain control of the CPU even when a process has yet to complete its current burst is called an interrupt. The kernel is designed to handle interrupts, signals from hardware or software that require immediate attention, and can interrupt the current process to handle the interrupt before returning to the original process.
阅读全文