Query: valloc
OS: netbsd
Section: 3
Links: netbsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
VALLOC(3) BSD Library Functions Manual VALLOC(3)NAMEvalloc -- aligned memory allocation functionLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdlib.h> void * valloc(size_t size);DESCRIPTIONThe valloc() function is obsoleted by the current version of malloc(3), which aligns page-sized and larger allocations. The valloc() function allocates size bytes aligned on a page boundary. It is implemented by calling malloc(3) with a slightly larger request, saving the true beginning of the block allocated, and returning a properly aligned pointer.RETURN VALUESThe valloc() function returns a pointer to the allocated space if successful; otherwise a null pointer is returnedHISTORYThe valloc() function appeared in 3.0BSD.BUGSA vfree() function has not been implemented.BSDMay 6, 2010 BSD
Related Man Pages |
---|
pvalloc(3) - linux |
aligned_alloc(3) - linux |
memalign(3) - linux |
posix_memalign(3) - debian |
pvalloc(3) - debian |