summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rbheap01 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rbheap01/init.c: Fix PAGE_SIZE redefined warningJoel Sherrill2017-06-211-37/+37
|
* rbheap: Fix rtems_rbheap_free()Sebastian Huber2015-09-111-0/+5
| | | | | | | Remove unused descriptor of merged free chunks from the free chain and add them to the spare descriptors. Close #2417.
* libtests/rbheap01: SimplifySebastian Huber2015-09-111-172/+95
| | | | Update #2417.
* rbheap: Drop direction from _RBTree_Iterate()Sebastian Huber2015-08-311-2/+0
|
* rbtree: Add and use RBTree_Compare_resultSebastian Huber2014-08-051-17/+0
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-212-2/+2
|
* tests/libtests: Use <rtems/test.h>Sebastian Huber2014-03-201-2/+6
|
* libtests: Add contents to rbheap and stackchk documentation filesCynthia Rempel2014-01-091-0/+145
|
* score/rbtree: Remove "unprotected" from APISebastian Huber2013-11-211-1/+1
|
* score: Create rbtree implementation headerSebastian Huber2013-07-231-0/+1
| | | | | | Move implementation specific parts of rbtree.h and rbtree.inl into new header file rbtreeimpl.h. The rbtree.h contains now only the application visible API.
* libtests/rbheap01: Add test casesSebastian Huber2012-12-221-0/+42
|
* libtmtests - Eliminate missing prototype warningsJoel Sherrill2012-05-111-0/+3
|
* rbheap: API changes and documentationSebastian Huber2012-04-181-38/+51
|
* rbheap: New filesSebastian Huber2012-04-114-0/+603
In the Red-Black Tree Heap the administration data structures are not contained in the managed memory area. This can be used for example in a task stack allocator which protects the task stacks from access by other tasks.