How does libc communicate with the OS (e.g., a Linux kernel) to manage memory? Specifically, how does it allocate memory, and how does it release memory? Also, in what cases can it fail to allocate and deallocate, respectively?
|
1) how does it allocate memory libc provides malloc() to C programs.
And this is about sbrk.
2) in what cases can it fail to allocate Also from malloc
And from proc
|
||||
|
That is very general question, but I want to speak to the failure to allocate. It's important to realize that memory is actually allocated by kernel upon first access. What you are doing when calling When I get The shortage of physical memory is not detectable from within a process (or libc which is part of the process) by failure to allocate. Yeah, you can hit "overcommitting limit", but that doesn't mean the physical memory is all taken. When free physical memory is low, kernel invokes special task called OOM killer (Out Of Memory Killer) which terminates some processes in order to free memory. Regarding failure to |
||||
|
|
|
Mostly it uses the Larger blocks are sometime done by using |
|||
|
|
Through system calls - this is a low-level API that the kernel provides.
Unix-like systems provide the "sbrk" syscall.
Allocation can fail, for example, when there's no enough available memory. Deallocation shall not fail. |
|||
|