SNU-ARC / 2024_spring_sysprog_Lab3

7 stars 0 forks source link

Question on meaning of CHUCKSIZE #17

Open UnchartedWhispers opened 5 months ago

UnchartedWhispers commented 5 months ago

Does the meaning of CHUCKSIZE "minimal data segment allocation unit" mean the minimal amount ds_heap_brk can be incremented(not decremented) at once?

kwonsw055 commented 5 months ago

ds_heap_brk can be incremented by any size. You may or may not use CHUNKSIZE depending on your implementation.

UnchartedWhispers commented 5 months ago

Thank you. So even when mm_init is called we have this freedom?

kwonsw055 commented 5 months ago

Yes. You may freely select a size for mm_init too.