summaryrefslogtreecommitdiff
path: root/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2014-11-28libcsupport: Delete malloc statisticsSebastian Huber
Use the heap handler statistics instead. Add heap walk option to MALLOC shell command. close #1367
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2013-05-10libcsupport: Avoid division by zeroSebastian Huber
2012-12-11libcsupport: Doxygen enhancement GCI task #4Alex Ivanov
http://www.google-melange.com/gci/task/view/google/gci2012/8009205
2012-10-25score: Work area initialization API changeSebastian Huber
The work areas (RTEMS work space and C program heap) will be initialized now in a separate step and are no longer part of rtems_initialize_data_structures(). Initialization is performed with tables of Heap_Area entries. This allows usage of scattered memory areas present on various small scale micro-controllers. The sbrk() support API changes also. The bsp_sbrk_init() must now deal with a minimum size for the first memory chunk to take the configured work space size into account.