Changed base implementation of protected heap allocations to use _Heap_Allocate_aligned_with_boundary().

This commit is contained in:
Thomas Doerfler
2009-11-30 13:06:21 +00:00
parent 51bdbca101
commit 9224a751b1
7 changed files with 72 additions and 66 deletions

View File

@@ -169,7 +169,11 @@ int rtems_memalign(
* @return A pointer to the begin of the allocated memory area, or @c NULL if
* no memory is available or the parameters are inconsistent.
*/
void *rtems_malloc(size_t size, uintptr_t alignment, uintptr_t boundary);
void *rtems_heap_allocate_aligned_with_boundary(
size_t size,
uintptr_t alignment,
uintptr_t boundary
);
#ifdef __cplusplus
}