基本概念

Untitled

Main Memory 必须同时支持 OS 和 user processes,由于它是有限资源,因此必须高效分配。

连续分配:这是一种早期的内存分配方法,要求为每个进程在内存中分配一个连续的内存块。

Untitled

两个partitions 一部分用于常驻的操作系统(通常位于low memory with interrupt vector),另一部分用于User processes(位于high memory)。

每个进程的分配:每个进程被包含在内存的单个连续部分中。

内存映射和保护

Untitled

救救我这些概念到底是在哪里出现的

找到了 在background

Relocation and limit registers used to protect user processes from each other.

https://www.notion.so/MAIN-MEMORY-3fb12715c9ce4c51bbd76ef1411ec7be?pvs=4#2848365152214022bcbcfc6b8e3e4378

内存分配的多分区策略