Heap memory allocation in Linux
Heap memory allocation in Linux I’m confused about whether the memory allocated by Linux when a process requests ‘x’ amount of heap is actually contiguous physically or not? Here’s my understanding till now: The unit of memory allocation in Linux is page size. By default, page size = 4KB. The page is physically contiguous in …