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?
|
3
|
|||||||
|
|
|
When you call When you call |
||||||||||||||||
|
|
|
The heap manager stored the amount of memory belonging to the allocated block somewhere when you called I never implemented one myself, but I guess the memory right in front of the allocated block might contain the meta information. |
||
|
|
|
More information on this other question. |
||
|
|
|
|
From the 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) |
|||
|
|
|
|
To answer the second half of your question: yes, you can, and a fairly common pattern in C is the following:
|
||
|
|
|
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. |
||
|
|
|
|
There are free courses on iTunes University (University of Stanford): Programming Paradigms in which the answer to your question is very well explained. |
||
|
|
