what functions a memory manager shoud have?

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
SCSoft
Posts: 11
Joined: Tue Jan 31, 2006 12:00 am

what functions a memory manager shoud have?

Post by SCSoft »

what functions a memory manager shoud have?
digo_rp
Member
Member
Posts: 233
Joined: Sun Jun 05, 2005 11:00 pm

Re: what functions a memory manager shoud have?

Post by digo_rp »

you need a physical memory management, virtual one, it need to take care of anything about aloc/dealoc/ memory in your O.S example malloc.

a user program need some block of extra memory.

then you need to alocate it. and when that program doesn?t need anymore, it ask your o.s system call to dealoc that block. then again you memory management need to free/dealoc that block,

I hope I had help you... sorry my english is so poor.

:)
SCSoft
Posts: 11
Joined: Tue Jan 31, 2006 12:00 am

Re: what functions a memory manager shoud have?

Post by SCSoft »

thanks
My english is poor too...
Post Reply