Query: malloc_size
OS: osx
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MALLOC_SIZE(3) BSD Library Functions Manual MALLOC_SIZE(3)NAMEmalloc_good_size, malloc_size -- memory allocation informationSYNOPSIS#include <malloc/malloc.h> size_t malloc_good_size(size_t size); size_t malloc_size(const void *ptr);DESCRIPTIONThe malloc_size() function returns the size of the memory block that backs the allocation pointed to by ptr. The memory block size is always at least as large as the allocation it backs, and may be larger. The malloc_good_size() function rounds size up to a value that the allocator implementation can allocate without adding any padding; it then returns that rounded-up value.SEE ALSOmalloc(3)BSDMay 23, 2006 BSD
Related Man Pages |
---|
mapmalloc(3malloc) - opensolaris |
mapmalloc(3malloc) - sunos |
malloc_zone_realloc(3) - osx |
mapmalloc(3malloc) - debian |
mapmalloc(3malloc) - opendarwin |
Similar Topics in the Unix Linux Community |
---|
How to write code for a Logging Event? |
Segmentation fault when debugging in C |
Help with malloc() |