Mail Archives: djgpp/2000/06/25/05:52:00
Some memory allocation questions:
QUESTION I
The comp.lang.c FAQ says
7.27
Q: So can I query the malloc package to find out how big
an allocated block is?
A: Unfortunately, there is no standard or portable way.
but I would like to do it anyway, with DJGPP. None of the
memory allocation routines listed in info.exe seem to fit.
Does somebody know how to do it? It would be extra nice if
the solution was somwhat portable to the GNU GCC compiler.
QUESTION II
You can use realloc to free the last n bytes of a memory
area, like this:
byte *p = malloc(100);
. . .
p = realloc(p, 50); /* saving the contents of bytes
0..49, freeing bytes 50..99 */
thus doing a nifty "slicing" operation without having to
copy anything. It would be nice to also be able to do the "opposite"
operation, i e freeing the *first* n bytes,
like this:
byte *p = malloc(100);
. . .
p = free_the_first_n_bytes(p, 35);
/* p now is old p + 35;
bytes 0..34 are freed */
Thanks
/Martin Nilsson
______________________________________________
FREE Personalized Email at Mail.com
Sign up at http://www.mail.com/?sr=signup
- Raw text -