Friday, July 11, 2008
Buddy system of memory allocation
Good name na???:)Free memory is maintained in linked lists, each of equal sized blocks. Any such block is of size 2^k. When some memory is required by a process, the block size of next higher order is chosen, and broken into two. Note that the two such pieces differ in address only in their kth bit. Such pieces are called buddies. When any used block is freed, the OS checks to see if its buddy is also free. If so, it is rejoined, and put into the original free-block linked-list.This is an easy topic and can be read within two or three hours.It took just one hour for me to finish this topic.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment