summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rtems_heap_greedy.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update company nameSebastian Huber2023-05-201-1/+1
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* cpukit/libcsupport/src/[g-r]*: Change license to BSD-2Joel Sherrill2022-04-011-3/+22
| | | | Updates #3053.
* cpukit/: Scripted embedded brains header file clean upJoel Sherrill2022-03-101-6/+0
| | | | Updates #4625.
* libcsupport: Add sbrk greedy support to consume all sbrk memoryChris Johns2021-02-101-12/+7
| | | | | | | | | - Move the heap sbrk code into a separate routnine. - Update heap and workspace greedy allocators to use the common sbrk greedy support. Closes #3982
* libcsupport: Have greedy allocations use consume extended memoryChris Johns2021-02-081-0/+13
| | | | | | | - Call the heap extend handler until all memory has been requested. Closes #3982
* 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
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* heap: Add _Heap_Greedy_allocate_all_except_largestSebastian Huber2013-06-251-0/+16
| | | | | Add rtems_workspace_greedy_allocate_all_except_largest() and rtems_heap_greedy_allocate_all_except_largest().
* libcsupport: Doxygen enhancement task #5Alex Ivanov2012-12-101-0/+7
| | | | http://www.google-melange.com/gci/task/view/google/gci2012/7992211
* score: Change greedy allocation APISebastian Huber2012-07-171-2/+5
|
* Added support functions for greedy heap allocationSebastian Huber2012-02-101-0/+37
Various tests must check program paths that result due to failed memory allocations from the heap. To avoid tinkering with internal heap structures throughout the test code these functions should be used.