summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapgreedy.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Fix for empty heapSebastian Huber2014-04-071-1/+6
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* score: Create heap implementation headerSebastian Huber2013-07-231-1/+1
| | | | | | Move implementation specific parts of heap.h and heap.inl into new header file heapimpl.h. The heap.h contains now only the application visible API.
* heap: Add _Heap_Greedy_allocate_all_except_largestSebastian Huber2013-06-251-0/+13
| | | | | Add rtems_workspace_greedy_allocate_all_except_largest() and rtems_heap_greedy_allocate_all_except_largest().
* score: _Heap_Protection_free_all_delayed_blocks()Sebastian Huber2013-06-211-0/+2
| | | | | Add and use _Heap_Protection_free_all_delayed_blocks() to prevent test suite failures if RTEMS_DEBUG is defined.
* Score misc: Clean up Doxygen #4 (GCI 2012)Alexandre Devienne2012-11-281-0/+8
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7985215
* score: Change greedy allocation APISebastian Huber2012-07-171-8/+25
|
* Added support functions for greedy heap allocationSebastian Huber2012-02-101-0/+62
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.