36#ifndef _RTEMS_CONFDEFS_MALLOC_H
37#define _RTEMS_CONFDEFS_MALLOC_H
39#ifndef __CONFIGURATION_TEMPLATE_h
40#error "Do not include this file directly, use <rtems/confdefs.h> instead"
47#if defined(CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK) \
48 || defined(CONFIGURE_MALLOC_DIRTY)
56#ifdef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
57const rtems_heap_extend_handler rtems_malloc_extend_handler =
61#ifdef CONFIGURE_MALLOC_DIRTY
62rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
Evaluate BSP Related Configuration Options.
void rtems_malloc_dirty_memory(void *start, size_t size)
Dirty Memory Function.
Definition: malloc_dirtier.c:28
void * rtems_heap_extend_via_sbrk(Heap_Control *heap, size_t alloc_size)
RTEMS Extend Heap via Sbrk.
Definition: rtems_heap_extend_via_sbrk.c:34