vote up 14 vote down star
3

In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to also pass the size (ie an array of 10 elements needs to receive 10 as a parameter to know the size of the array), but I do not have to pass the size to the free function. Why not, and can I use this same technique in my own functions to save me from needing to cart around the extra variable of the array's length?

flag

80% accept rate
3  
Maybe recommend Stackoverflow to the professor too, then. Seems some brushing-up is needed. :) – unwind Oct 5 at 11:24
A similar question: stackoverflow.com/questions/851958/… (though I'd say it's not quite duplicate) – therefromhere Oct 5 at 11:34

7 Answers

vote up 19 vote down check

When you call malloc(), you specify the amount of memory to allocate. The amount of memory actually used is slightly more than this, and includes extra information that records (at least) how big the block is. You can't (reliably) access that other information - and nor should you :-).

When you call free(), it simply looks at the extra information to find out how big the block is.

link|flag
2  
FYI, for example BSD has malloc_size() to reliably access the block size from an `malloc()`ed pointer. But there's no reliable, portable way. – laalto Oct 5 at 7:53
I think it's important to say that this extra information block is situated before the returned pointer. – gs Oct 5 at 8:28
2  
@gs Well that's implementation-dependent. But, yes, that's where it usually is. – Falaina Oct 5 at 11:20
so if you malloc'd two pieces of memory, and overwrote the first one, the second block would be un-free-able? – Carson Myers Oct 5 at 19:58
2  
@Carson: No, of course malloc will not overlap data required for its own memory management with memory that the user has requested. However, if you write beyond the boundaries of what you have requested from malloc, you may scribble over memory that doesn't "belong" to you and cause mysterious future failures. – ephemient Oct 6 at 2:00
vote up 0 vote down

The heap manager stored the amount of memory belonging to the allocated block somewhere when you called malloc.

I never implemented one myself, but I guess the memory right in front of the allocated block might contain the meta information.

link|flag
That's one possible implementation, but one could devise a system where all memory is tracked in a single table in a totally different page, not necessarily anywhere close to the memory pool being allocated from. – ephemient Oct 6 at 2:01
vote up 3 vote down

malloc() and free() are system/compiler dependent so it's hard to give a specific answer.

More information on this other question.

link|flag
vote up 10 vote down

From the comp.lang.c FAQ list: How does free know how many bytes to free?

The malloc/free implementation remembers the size of each block as it is allocated, so it is not necessary to remind it of the size when freeing. (Typically, the size is stored adjacent to the allocated block, which is why things usually break badly if the bounds of the allocated block are even slightly overstepped)

link|flag
vote up 1 vote down

To answer the second half of your question: yes, you can, and a fairly common pattern in C is the following:

typedef struct {
    size_t numElements
    int elements[1]; /* but enough space malloced for numElements at runtime */
} IntArray_t;

#define SIZE 10
IntArray_t* myArray = malloc(sizeof(intArray_t) + SIZE * sizeof(int));
myArray->numElements = SIZE;
link|flag
That's a completely different technique to the one BSD malloc uses for small objects ( though it's a perfectly good technique for creating Pascal style arrays ) – Pete Kirkham Oct 5 at 16:34
vote up 0 vote down

On a related note GLib library has memory allocation functions which do not save implicit size - and then you just pass the size parameter to free. This can eliminate part of the overhead.

link|flag
vote up 0 vote down

There are free courses on iTunes University (University of Stanford): Programming Paradigms in which the answer to your question is very well explained.

link|flag

Your Answer

Get an OpenID
or

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