36 void *aligned_alloc(
size_t alignment,
size_t size )
41 void *memalign(
size_t,
size_t )
RTEMS_ALIAS( aligned_alloc ) __malloc_like
42 __alloc_align(1) __alloc_size(2) __result_use_check
43 __attribute__((__nothrow__));
void * rtems_heap_allocate_aligned_with_boundary(size_t size, uintptr_t alignment, uintptr_t boundary) RTEMS_MALLOCLIKE RTEMS_ALLOC_SIZE(1) RTEMS_ALLOC_ALIGN(2) RTEMS_WARN_UNUSED_RESULT
Allocates a memory area of size size bytes from the heap.
#define RTEMS_ALIAS(_target)
Instructs the compiler to generate an alias to the specified target function.