Hacker News new | ask | show | jobs
by jstimpfle 3000 days ago
I don't think there is no such thing as a "C memory allocation model". There are various ways of requesting memory from the OS. But not requesting anything in advance is going to be very slow in any setting that requires a context switch or virtual memory.
1 comments

A typical memory manager will scale up the size of the requests to the OS whenever it runs out of space.