|
NAME | LIBRARY | SYNOPSIS | DESCRIPTION | ATTRIBUTES | VERSIONS | STANDARDS | HISTORY | CAVEATS | SEE ALSO | COLOPHON |
|
|
|
valloc(3) Library Functions Manual valloc(3)
valloc - page-aligned memory allocation
Standard C library (libc, -lc)
#include <stdlib.h>
[[deprecated]] void *valloc(size_t size);
Feature Test Macro Requirements for glibc (see
feature_test_macros(7)):
valloc():
Since glibc 2.12:
(_XOPEN_SOURCE >= 500) && !(_POSIX_C_SOURCE >= 200112L)
|| /* glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
Before glibc 2.12:
_BSD_SOURCE || _XOPEN_SOURCE >= 500
valloc() allocates size bytes and returns a pointer to the
allocated memory. The memory address will be a multiple of the
page size.
It is equivalent to memalign(sysconf(_SC_PAGESIZE),size).
For an explanation of the terms used in this section, see
attributes(7).
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ
โ Interface โ Attribute โ Value โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโค
โ valloc() โ Thread safety โ MT-Unsafe init โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโ
According to SUSv2, valloc() is declared in <stdlib.h>. glibc
declares it in <malloc.h>, and also in <stdlib.h> if suitable
feature test macros are defined (see above).
BSD, GNU.
glibc 2.0. 3.0BSD. Documented as obsolete in 4.3BSD, and as
legacy in SUSv2.
See memalign(3).
memalign(3)
This page is part of the man-pages (Linux kernel and C library
user-space interface documentation) project. Information about
the project can be found at
โจhttps://www.kernel.org/doc/man-pages/โฉ. If you have a bug report
for this manual page, see
โจhttps://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTINGโฉ.
This page was obtained from the tarball man-pages-6.18.tar.gz
fetched from
โจhttps://mirrors.edge.kernel.org/pub/linux/docs/man-pages/โฉ on
2026-05-24. If you discover any rendering problems in this HTML
version of the page, or you believe there is a better or more up-
to-date source for the page, or you have corrections or
improvements to the information in this COLOPHON (which is not
part of the original manual page), send a mail to
man-pages@man7.org
Linux man-pages 6.18 2025-12-13 valloc(3)
Pages that refer to this page: pvalloc(3)