summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/workspacegreedy.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/: Scripted embedded brains header file clean upJoel Sherrill2022-03-101-6/+0
| | | | Updates #4625.
* cpukit/rtems/src/[s-z]*.c: Change license to BSD-2Joel Sherrill2022-02-281-3/+22
| | | | Updates #3053.
* cputkit/rtems: Remove warningChris Johns2021-02-131-0/+1
|
* libcsupport: Add sbrk greedy support to consume all sbrk memoryChris Johns2021-02-101-2/+10
| | | | | | | | | - Move the heap sbrk code into a separate routnine. - Update heap and workspace greedy allocators to use the common sbrk greedy support. Closes #3982
* rtems: Canonicalize Doxygen @file commentsSebastian Huber2020-12-021-3/+7
| | | | | | Use common phrases for the file brief descriptions. Update #3706.
* 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
* score: Use proper protectionSebastian Huber2014-04-071-6/+7
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* Include missing <rtems/score/threaddispatch.h>Sebastian Huber2013-07-261-1/+2
|
* score: Create heap implementation headerSebastian Huber2013-07-231-0/+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/+16
| | | | | Add rtems_workspace_greedy_allocate_all_except_largest() and rtems_heap_greedy_allocate_all_except_largest().
* score misc: Clean up Doxygen #14 (GCI 2012)Mathew Kallada2012-12-021-0/+7
| | | | | | | 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/8025204
* score: Change greedy allocation APISebastian Huber2012-07-171-2/+5
|
* Add functions for greedy workspace allocationSebastian Huber2012-02-171-0/+38
Various tests must check program paths that result due to failed memory allocations from the workspace. To avoid tinkering with internal workspace structures throughout the test code these functions should be used.