I was trying to figure out how much memory I can malloc to maximum extent on my machine (1 Gb RAM 160 Gb HD Windows platform). I read that maximum memory malloc can allocate is limited to physical memory.(on heap)

Also when a program exceeds consumption of memory to a certain level, the computer stops working because other applications do not get enough memory that they require.

So to confirm,I wrote a small program in C,

int main(){  
    int *p;
    while(1){
        p=(int *)malloc(4);
        if(!p)break;
    }   
}

Hoping that there would be a time when memory allocation will fail and loop will be breaked. But my computer hanged as It was an infinite loop. I waited for about an hour and finally I had to forcely shut down my computer.

Some questions: Does malloc allocate memory from HD also?

What was the reason for above behaviour? Why didn't loop breaked at any point of time.?

Why wasn't there any allocation failure?

link|improve this question

80% accept rate
Anyway, why malloc(4), and why not malloc(4096), or malloc(8192), or else ? – Andrei Ciobanu May 9 '10 at 18:56
ofcourse it can be anything which is multiple of sizeof int. Isn't it? – Vikas May 9 '10 at 19:04
feedback

5 Answers

up vote 16 down vote accepted

I read that maximum memory malloc can allocate is limited to physical memory.(on heap)

Wrong: most computers/OSs support virtual memory, backed by disk space.

Some questions: Does malloc allocate memory from HD also?

malloc asks the OS, which in turn may well use some disk space.

What was the reason for above behaviour? Why didn't loop breaked at any point of time.?

Why wasn't there any allocation failure?

You just asked for too little at a time -- the loop would have broken eventually (well after your machine slowed to a crawl due to the large excess of virtual vs physical memory and the consequent super-frequent disk access, an issue known as "thrashing") but it exhausted your patience well before then. Try getting e.g. a megabyte at a time instead.

when a program exceeds consumption of memory to a certain level, the computer stops working because other applications do not get enough memory that they require.

A total stop is unlikely, but when an operation that normally would take a few microseconds ends up taking (e.g.) tens of milliseconds, those four orders of magnitude may certainly make it feel as if the computer had basically stopped -- what would normally take a minute would take a week, etc;-).

link|improve this answer
1  
Did you mean "thrashing"? – RichieHindle May 9 '10 at 16:48
Thanx for the info about malloc allocating Disk space. I suspected that, but in many article there was no mention of disk space and was written that malloc alllocates on heap and physical memory. :) – Vikas May 9 '10 at 17:21
@Richie I also suppose that Alex meant 'thrashing' there. – Vikas May 9 '10 at 17:22
@Richie and @Vikas, oops, yes, edited to fix the typo, thanks!-) – Alex Martelli May 9 '10 at 19:50
your memory size is 1GB doesnt mean that malloc will go all the way there. It really depends upon the amount of memory your OS assigns to your process. Which by looking at the code in this case will be very low. From there on it goes on to allocate memory on your virtual memory. – Ram Bhat May 30 '10 at 15:03
feedback

malloc does it's own memory management, managing small memory blocks itself, but ultimately it uses the Win32 Heap functions to allocate memory. You can think of malloc as a "memory reseller".

The windows memory subsystem comprises physical memory (RAM) and virtual memory (HD). When physical memory becomes scarce, some of the pages can be copied from physical memory to virtual memory on the hard drive. Windows does this transparently.

By default, Virtual Memory is enabled and will consume the available space on the HD. So, your test will continue running until it has either allocated the full amount of virtual memory for the process (2GB on 32-bit windows) or filled the hard disk.

link|improve this answer
feedback

I don't actually know why that failed, but one thing to note is that `malloc(4)" may not actually give you 4 bytes, so this technique is not really an accurate way to find your maximum heap size.

I found this out from my question here.

For instance, when you declare 4 bytes of memory, the space directly before your memory could contain the integer 4, as an indication to the kernel of how much memory you asked for.

link|improve this answer
indeed, malloc usually give a multiple of 16 bytes. There is two reasons. One is that standard says malloc should return a pointer compatible with any data alignment. Thus addresses separated by less than 16 bytes coulnd't be returned. The other reason is that freed blocks usually store some data used for internal memory management and a block too short - say 4 bytes - couldn't store it. – kriss May 9 '10 at 16:47
@kriss [i] freed blocks usually store some data used for internal memory management and a block too short - say 4 bytes - couldn't store it.[/i] Can you mention what kind of data? – Vikas May 9 '10 at 17:24
@Vikas: See the update to my answer. – Chris Cooper May 9 '10 at 18:43
feedback

I know this thread is old, but for anyone willing to give it a try oneself, use this code snipped

#include <stdlib.h>

int main() {
int *p;
while(1) {
    int inc=1024*1024*sizeof(char);
    p=(int*) calloc(1,inc);
    if(!p) break;
    }
}

run

$ gcc memtest.c
$ ./a.out

upon running, this code fills up ones RAM until killed by the kernel. Using calloc instead of malloc to prevent "lazy evaluation". Ideas taken from this thread: Malloc Memory Questions

This code quickly filled my RAM (4Gb) and then in about 2 minutes my 20Gb swap partition before it died. 64bit Linux of course.

link|improve this answer
+1 Nice answer. – ricola86 May 13 '11 at 8:48
feedback

As per C90 standard guarantees that you can get at least one object 32 kBytes in size, and this may be static, dynamic, or automatic memory. C99 guarantees at least 64 kBytes. For any higher limit, refer your compiler's documentation.

Also, malloc's argument is a size_t and the range of that type is [0,SIZE_MAX], so the maximum you can request is SIZE_MAX, which value varies upon implementation and is defined in .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.