This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



POSIX_MEMALIGN(3)                       BSD Library Functions Manual                       POSIX_MEMALIGN(3)

NAME
     posix_memalign -- aligned memory allocation

SYNOPSIS
     #include <stdlib.h>

     int
     posix_memalign(void **memptr, size_t alignment, size_t size);

DESCRIPTION
     The posix_memalign() function allocates size bytes of memory such that the allocation's base address is
     an exact multiple of alignment, and returns the allocation in the value pointed to by memptr.

     The requested alignment must be a power of 2 at least as large as sizeof(void *).

     Memory that is allocated via posix_memalign() can be used as an argument in subsequent calls to
     realloc(3), reallocf(3), and free(3).  (Note however, that the allocation returned by realloc(3) or
     reallocf(3) is not guaranteed to preserve the original alignment).

NOTES
     posix_memalign() should be used judiciously as the algorithm that realizes the alignment constraint can
     incur significant memory overhead.

RETURN VALUES
     The posix_memalign() function returns the value 0 if successful; otherwise it returns an error value.

ERRORS
     The posix_memalign() function will fail if:

     [EINVAL]           The alignment parameter is not a power of 2 at least as large as sizeof(void *).

     [ENOMEM]           Memory allocation error.

SEE ALSO
     free(3), malloc(3), realloc(3), reallocf(3), valloc(3), malloc_zone_memalign(3)

STANDARDS
     The posix_memalign() function conforms to IEEE Std 1003.1-2001 (``POSIX.1'').

BSD                                             April 9, 2008                                            BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...