rellermeyer / course_os

CS 439 course OS
BSD 3-Clause "New" or "Revised" License
38 stars 26 forks source link

Block allocator #3

Closed rellermeyer closed 4 years ago

rellermeyer commented 10 years ago

We need a memory allocator to manage blocks of memory. This will initially be mostly used by kmalloc.

jeffreyftang commented 10 years ago

Tricky part of this is keeping track of the metadata without having dynamic memory management.

mpanoratra commented 10 years ago

I can work on this.

NULLx76 commented 4 years ago

A nice memory allocator has been implemented in allocator.c now, so far it works nicely.