|
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)