Files
semi-libc/src/malloc/malloc_usable_size.c
T
Szabolcs NagyandRich Felker d150764697 fix malloc_usable_size for NULL input
the linux man page specifies malloc_usable_size(0) to return 0 and
this is the semantics other implementations follow (jemalloc).
reported by Alexander Monakov.
2016-01-31 17:34:45 -05:00

18 lines
384 B
C

#include <malloc.h>
void *(*const __realloc_dep)(void *, size_t) = realloc;
struct chunk {
size_t psize, csize;
struct chunk *next, *prev;
};
#define OVERHEAD (2*sizeof(size_t))
#define CHUNK_SIZE(c) ((c)->csize & -2)
#define MEM_TO_CHUNK(p) (struct chunk *)((char *)(p) - OVERHEAD)
size_t malloc_usable_size(void *p)
{
return p ? CHUNK_SIZE(MEM_TO_CHUNK(p)) - OVERHEAD : 0;
}