Memory Management

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Jpmon1
Posts: 1
Joined: Thu Feb 01, 2007 1:03 pm

Memory Management

Post by Jpmon1 »

Hello,

I am looking for a good tutorial showing how to set up some kind of memory management. I have found plenty of theoretical tutorials, but none that go the extra step. Any help would be greatly appreciated.

Thanks,

- Jon
Otter
Member
Member
Posts: 75
Joined: Sun Dec 31, 2006 11:56 am
Location: Germany

Post by Otter »

What do you want for your memory manager ? Do you want a simple malloc/free implementation for an already allocated area ( for example if you do not use paging and use all your physical memory which is not needed by the kernel as heap ) or do you want a complex one which can handle paging, one which can organize your virtual address space ?
Post Reply