What is Paging in Computer Architecture

Asked By 0 points N/A Posted on -
qa-featured

What is paging in Computer Architecture?

How it works?

And how important role this technique can play in computer architecture?

And what is its basic role in computer architecture?"

SHARE
Best Answer by Tunacao_Caaron1
Answered By 0 points N/A #127339

What is Paging in Computer Architecture

qa-featured

Paging is a distribution of disk storage for data that do not suit on the physical memory into pages. It can be used to remove the sluggish pages from RAM. Pages changes from machine architecture as it is commonly formed on the kernel of the OS. The address space on the program breaks into a permanent size pieces called Pages. It is placed on the page frames with the similar size.

Paging is implemented; if the pages are being accessed by a process and is not currently presented to RAM, it is called as the Page Fault. Page Faults are operated and handled by your OS but it cannot be seen.

It gives protection on the memory and shared memory on the tasks such as IPC that also saves memory when utilizes for DLLs.

 

 

 

 

Best Answer
Best Answer
Answered By 20 points N/A #127340

What is Paging in Computer Architecture

qa-featured

Hey Haji!

Here I will tell you the main purpose and work of paging , which is as follow :

It Split memory into equal sized, small chunks -page frames.

It Split programs (processes) into equal sized small chunks – pages.

It Allocate the required number page frames to a process.

Operating System maintains list of free frames.

A process does not require contiguous page frames.

Use page table to keep track of how the process is distributed through the pages in memory

Now addressing becomes page number: relative address within page which is mapped to frame number: relative address within frame.

The picture below shows how it works:

 

Thanks

Tunacao Caroon.

Related Questions