On Linux if I were to malloc(1024 * 1024 * 1024), what does malloc actually do?
I\'m sure it assigns a virtual address to the allocation (by walking the
Linux does deferred page allocation, aka. 'optimistic memory allocation'. The memory you get back from malloc is not backed by anything and when you touch it you may actually get an OOM condition (if there is no swap space for the page you request), in which case a process is unceremoniously terminated.
See for example http://www.linuxdevcenter.com/pub/a/linux/2006/11/30/linux-out-of-memory.html