virtual memory, next question
Posted: Thu Sep 11, 2014 8:08 am
I'm reading http://www.jamesmolloy.co.uk/tutorial_h ... aging.html
And in this tutorial is presented following struct of page directory.
typedef struct page_directory
{
page_table_t *tables[1024];
u32int tablesPhysical[1024];
u32int physicalAddr;
};
Why does it work? Here
is described struct of entry in directory tables. This is different with above.
And in this tutorial is presented following struct of page directory.
typedef struct page_directory
{
page_table_t *tables[1024];
u32int tablesPhysical[1024];
u32int physicalAddr;
};
Why does it work? Here
is described struct of entry in directory tables. This is different with above.