37#ifndef _RTEMS_CONFDEFS_MALLOC_H
38#define _RTEMS_CONFDEFS_MALLOC_H
40#ifndef __CONFIGURATION_TEMPLATE_h
41#error "Do not include this file directly, use <rtems/confdefs.h> instead"
48#if !defined(CONFIGURE_DISABLE_BSP_SETTINGS) && \
49 defined(CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK)
50#define _CONFIGURE_HEAP_EXTEND_VIA_SBRK
53#if defined(_CONFIGURE_HEAP_EXTEND_VIA_SBRK) || defined(CONFIGURE_MALLOC_DIRTY)
61#ifdef _CONFIGURE_HEAP_EXTEND_VIA_SBRK
62const rtems_heap_extend_handler rtems_malloc_extend_handler =
66#ifdef CONFIGURE_MALLOC_DIRTY
67rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
This header file evaluates configuration options related to the BSP configuration.
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:52
void rtems_malloc_dirty_memory(void *start, size_t size)
Dirty Memory Function.
Definition: malloc_dirtier.c:47
This header file defines interfaces to support and use dynamic memory allocation.