issues
search
J-Jaeh
/
Malloc_Lab
메모리 단편화, 메모리 할당 정책, 시스템 콜, sbrk/mmap
0
stars
0
forks
source link
Malloc Lap
#1
Open
J-Jaeh
opened
7 months ago
J-Jaeh
commented
7 months ago
구현방식
[X] Implicit
[X] first fit
[x] #5
[ ] #8
[ ] #4
[ ] #7
[ ] Simple Segregated
[ ] Buddy System
Main Files
[x] mm.{c,h} : Your solution malloc package. mm.c is the file that you will be handing in, and is the only file you should
[x] mm_init
[x] mm_malloc : Allocate a block by incrementing the brk pointer.
[x] mm_free : Freeing a block does nothing.
[x] mm_realloc : Implemented simply in terms of mm_malloc and mm_free
구현방식
[ ] Buddy System
Main Files