answersLogoWhite

0

In certain situations the page tables could become large enough that by paging the page tables, one could simplify the memory allocation problem (by ensuring that everything is allocated as fixed-size pages as opposed to variable-sized chunks) and also enable the swapping of portions of page table that are not currently used.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Advantages of hierarchical paging?

Hierarchical paging can offer more efficient memory management by organizing the page table in a hierarchical structure, reducing the memory overhead compared to a single-level page table. It allows for better utilization of memory resources by only mapping the necessary page table entries in the page table, which helps in reducing the total number of page table entries needed. Additionally, hierarchical paging can improve the speed of address translation by enabling faster access to the necessary page table entries.


What is difference between demand paging n pure demand paging?

In demand paging, a page is not loaded into main memory until it is needed. In pure demand paging, even a single page is not loaded into memory initially. Hence pure demand paging causes a page fault. Page fault, the situation in which the page is not available whenever a processor needs to execute it.


What is the purpose of paging the paging table?

For get the attention of people in an emergency quickly.


What is excessive paging?

Excessive paging is when you page someone over and over again.


What is the purpose of paging the page table?

For get the attention of people in an emergency quickly.


What purpose of paging the page table?

In certain situations the page tables could become large enough that by paging the pagetables, one could simplify the memory allocation problem (by ensuring that everythingis allocated as fixed-size pages as opposed to variable-sized chunks) and also enable theswapping of portions of page table that are not currently used.Read more: What_is_the_purpose_of_paging_the_page_tables


What is Hierarchical Paging?

Hierarchical paging is a memory management technique used in computer systems where the page table is structured in a hierarchical manner to efficiently map virtual addresses to physical addresses. This helps in reducing the space required for page tables and improves memory access times.


What are the release dates for Paging Page Two - 1917?

Paging Page Two - 1917 was released on: USA: 10 December 1917


What is the purpose of paging the page tables?

In certain situations the page tables could become large enough that by paging the page tables, one could simplify the memory allocation problem (by ensuring that everything is allocated as fixed-size pages as opposed to variable-sized chunks) and also enable the swapping of portions of page table that are not currently used. The disadvantage that associate with it is that more memory accesses may be required for address translation.


What actors and actresses appeared in Paging Page Two - 1917?

The cast of Paging Page Two - 1917 includes: Agnes Ayres Edward Earle


What is the opposite of paging device?

The opposite of paging device is no paging device. Either someone can page you or they can't. Prior to pagers and cell phones, there were just landline phones.


Can combination of paging and segmentation result in better performance?

* Combine Paging and Segmentation ** Structure *** Segments correspond to logical units: code, data, stack. Segments vary in size and are often large. *** Each segment contains one or more (fixed-size) pages. ** Two levels of mapping to make tables manageable (2 look-ups!) *** Page table for each segment. * Segments Pages Advantages ** Advantages of Segments *** Supports sparse address spaces. If segment is not used, no need for page table. Decreases memory required for page tables. ** Advantages of Paging*** Eliminate external fragmentation. ** Advantages of Both. Increases flexibility of sharing. Share at two levels: Page or segment (entire page table). * Segments + Pages Disadvantages ** Internal fragmentation increases. Last page of every segment in every process . ** Increases overhead of accessing memory *** 1 or 2 overhead references for every real reference. ** Large page tables *** Two potential solutions: Page the user page tables (multilevel page table), Inverted page table.