summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* malloc: Hide RTEMS_Malloc_Sbrk_amountSebastian Huber2021-04-201-1/+6
| | | | | | Move RTEMS_Malloc_Sbrk_amount to the only implementation file which uses it and make it private to hide implementation-details from an API header.
* Canonicalize config.h includeSebastian Huber2020-04-161-2/+2
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* libcsupport: Delete malloc statisticsSebastian Huber2014-11-281-2/+0
| | | | | | | Use the heap handler statistics instead. Add heap walk option to MALLOC shell command. close #1367
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* libcsupport: Avoid division by zeroSebastian Huber2013-05-101-1/+1
|
* libcsupport: Doxygen enhancement GCI task #4Alex Ivanov2012-12-111-0/+7
| | | | http://www.google-melange.com/gci/task/view/google/gci2012/8009205
* score: Work area initialization API changeSebastian Huber2012-10-251-0/+58
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.