Skip to content
Advertisement

single common address space for all tasks

How to give single common address space for all tasks. IF its happening like this can we avoid virtual to physical memory mapping.

I f all task sharing common address space then how can we avoid virtual to physical memory mapping.

Advertisement

Answer

I’m not sure why you would want to disable virtual memory mapping – it’s a built in function of the cpu, and pretty much essential when running an OS to properly isolate processes from each other.

Most operating systems allow you to disable virtual memory, so that your memory capacity is limited by physical memory. However, A processes address space is still virtual, and virtual to physical mapping is still happening.

A way to get what you want is to run an operating system that executes in Real Mode, such as DOS or Windows 3.0, or write your own.

The advantages of virtual memory far outweigh the disadvantages. Why do you want to avoid virtual memory.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement