Skip to content

Instantly share code, notes, and snippets.

@hello009-commits
Created May 19, 2013 08:59
Show Gist options
  • Save hello009-commits/5607141 to your computer and use it in GitHub Desktop.
Save hello009-commits/5607141 to your computer and use it in GitHub Desktop.
aligned memory allocation

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 how- ever, 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 real- izes the alignment constraint can incur significant memory overhead.

RETURN VALUES

The posix_memalign() function returns the value 0 if successful; other- wise 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 *).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment