summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rbheap01 (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-10testsuite/libtests: Merged nested Makefile.am files into one Makefile.amChris Johns1-19/+0
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber1-1/+1
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber1-2/+0
The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns1-0/+2
- Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
2017-06-21rbheap01/init.c: Fix PAGE_SIZE redefined warningJoel Sherrill1-37/+37
2015-09-11rbheap: Fix rtems_rbheap_free()Sebastian Huber1-0/+5
Remove unused descriptor of merged free chunks from the free chain and add them to the spare descriptors. Close #2417.
2015-09-11libtests/rbheap01: SimplifySebastian Huber1-172/+95
Update #2417.
2015-08-31rbheap: Drop direction from _RBTree_Iterate()Sebastian Huber1-2/+0
2014-08-05rbtree: Add and use RBTree_Compare_resultSebastian Huber1-17/+0
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns2-2/+2
2014-03-20tests/libtests: Use <rtems/test.h>Sebastian Huber1-2/+6
2014-01-09libtests: Add contents to rbheap and stackchk documentation filesCynthia Rempel1-0/+145
2013-11-21score/rbtree: Remove "unprotected" from APISebastian Huber1-1/+1
2013-07-23score: Create rbtree implementation headerSebastian Huber1-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.
2012-12-22libtests/rbheap01: Add test casesSebastian Huber1-0/+42
2012-05-11libtmtests - Eliminate missing prototype warningsJoel Sherrill1-0/+3
2012-04-18rbheap: API changes and documentationSebastian Huber1-38/+51
2012-04-11rbheap: New filesSebastian Huber4-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.