Mehdi9721 / DAC_OS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DAC_OS

Segmentation in Operating System

A process is divided into Segments. The chunks that a program is divided into which are not necessarily all of the exact sizes are called segments. Segmentation gives the user’s view of the process which paging does not provide. Here the user’s view is mapped to physical memory.

What is Segment Table?

It maps a two-dimensional Logical address into a one-dimensional Physical address.

Base Address: It contains the starting physical address where the segments reside in memory.
Segment Limit: Also known as segment offset. It specifies the length of the segment.

About