*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: valloc | Section: 3 | Source: OpenBSD | File: valloc.3
VALLOC(3) FreeBSD Library Functions Manual VALLOC(3) NAME valloc - aligned memory allocation function SYNOPSIS #include <unistd.h> void * valloc(size_t size); DESCRIPTION The valloc() function is obsoleted by the current version of malloc(3), which aligns page-sized and larger allocations and both aligned_alloc(3) and posix_memalign(3), which allocate memory with a given alignment. 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 VALUES The valloc() function returns a pointer to the allocated space if successful; otherwise a null pointer is returned. SEE ALSO malloc(3) HISTORY The valloc() function appeared in 3.0BSD. BUGS A vfree() function has not been implemented. FreeBSD 14.1-RELEASE-p8 November 5, 2018 FreeBSD 14.1-RELEASE-p8

Navigation Options