From 90eb3f90c77db48b6fd592777d4cf31c0e973fbf Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Wed, 31 Aug 2022 14:30:04 +0100 Subject: [PATCH] Last Sync: 2022-08-31 14:30:04 --- Operating_Systems/The_Kernel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Operating_Systems/The_Kernel.md b/Operating_Systems/The_Kernel.md index 63dcf41..668fefa 100644 --- a/Operating_Systems/The_Kernel.md +++ b/Operating_Systems/The_Kernel.md @@ -43,7 +43,7 @@ During the context switch from CPU to user space, the kernel allocates memory. I - Managing read-only memory - Allowing for the use of disk space as auxiliary memory -> Modern CPUs include a memory management unit which provides the kernel with **virtual** memory. In this scenario, memory isn't directly accessed by the process instead it works on the assumption that is has access to the entire memory of the machine and this is then translated into a map that is applied to the real memory and managed by the kernel. +> Modern CPUs include a [memory management unit](/Hardware/Memory/Virtual_memory_and_the_MMU.md) which provides the kernel with **virtual** memory. In this scenario, memory isn't directly accessed by the process instead it works on the assumption that is has access to the entire memory of the machine and this is then translated into a map that is applied to the real memory and managed by the kernel. ## Device drivers