I can say about Linux/glibc.
In the source code it contains comments like this:
if n is for fewer bytes than already held by p, the newly unused
space is lopped off and freed if possible.
if you look at code of glibc, it contains lines like this:
remainder_size = newsize - nb;
if (remainder_size < MINSIZE) { /* not enough extra to split off */
set_head_size(newp, newsize | (av != &main_arena ? NON_MAIN_ARENA : 0));
set_inuse_bit_at_offset(newp, newsize);
}
else { /* split remainder */
remainder = chunk_at_offset(newp, nb);
set_head_size(newp, nb | (av != &main_arena ? NON_MAIN_ARENA : 0));
set_head(remainder, remainder_size | PREV_INUSE |
(av != &main_arena ? NON_MAIN_ARENA : 0));
/* Mark remainder as inuse so free() won't complain */
set_inuse_bit_at_offset(remainder, remainder_size);
#ifdef ATOMIC_FASTBINS
_int_free(av, remainder, 1);
#else
_int_free(av, remainder);
#endif
}
nb - number of bytes you want, newsize here, should be called oldsize.
So it tries to free the excess if possible.
About Mac OSX. More precisely about magazine_malloc, current implementation of malloc from Apple. See http://cocoawithlove.com/2010/05/look-at-how-malloc-works-on-mac.html for details.
realloc calls the zone realloc method, its current implementation as I see is szone_realloc.
For different allocation sizes exists different code, but the algorithm is always the same:
if (new_good_size <= (old_size >> 1)) {
/*
* Serious shrinkage (more than half). free() the excess.
*/
return tiny_try_shrink_in_place(szone, ptr, old_size, new_good_size);
} else if (new_good_size <= old_size) {
/*
* new_good_size smaller than old_size but not by much (less than half).
* Avoid thrashing at the expense of some wasted storage.
*/
return ptr;
}
So as you can see, its implementation checks that new_size <= old_size / 2, and if so frees memory, and if not it does nothing.
mallocorrealloc... – Joe Nov 17 '11 at 21:09realloc()in this case won't reallocate the buffer. One reason is thatrealloc()may choose to do so is in order to minimize fragmentation. There's implementation dependent. It would be best to look in the official interface documentation ofrealloc()on those platforms. In order to achieve maximum portability it's advised not to assume anything beyond what the documentation provides "by contract". – Dan Aloni Nov 17 '11 at 21:14