|
NAME | LIBRARY | SYNOPSIS | DESCRIPTION | ATTRIBUTES | VERSIONS | STANDARDS | HISTORY | CAVEATS | SEE ALSO | COLOPHON |
|
|
|
memalign(3) Library Functions Manual memalign(3)
memalign - allocate aligned memory
Standard C library (libc, -lc)
#include <malloc.h>
[[deprecated]] void *memalign(size_t alignment, size_t size);
memalign() is equivalent to aligned_alloc(3), except for the
CAVEATS documented below.
For an explanation of the terms used in this section, see
attributes(7).
┌──────────────────────────────────────┬───────────────┬─────────┐
│ Interface │ Attribute │ Value │
├──────────────────────────────────────┼───────────────┼─────────┤
│ memalign() │ Thread safety │ MT-Safe │
└──────────────────────────────────────┴───────────────┴─────────┘
On some systems memalign() is declared in <stdlib.h> instead of
<malloc.h>.
None.
glibc 2.0. SunOS 4.1.3.
memalign() may not check that the alignment argument is correct.
Some systems provide no way to reclaim memory allocated with
memalign() (because one can pass to free(3) only a pointer
obtained from malloc(3), while, for example, memalign() would call
malloc(3) and then align the obtained value). The glibc
implementation allows memory obtained from memalign() to be
reclaimed with free(3).
aligned_alloc(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 memalign(3)
Pages that refer to this page: malloc_hook(3), mtrace(3), valloc(3)