I am going through linux notes from one of the training institute here. As per that when ever a process is created a region is allocated to it. Region contains all the segments for the process.
Also region is specified by region-table. Region table contains following entry ;--
virtual address to - Physical address pointer + Disk Block Discriptor
Disk block descriptor point to the swap or exe file on disk.
two douts i have :-----
1> Where does the Global & Local Descriptor role is here.
2> Does each process have its own global descriptor table ? What i think is yes otherwise two processes vitual address will point towards same physical address .
Please suggest