summaryrefslogtreecommitdiff
path: root/testsuites/libtests/rbheap01 (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-04-10testsuite/libtests: Merged nested Makefile.am files into one Makefile.amChris Johns
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber
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 Johns
- 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 Sherrill
2015-09-11rbheap: Fix rtems_rbheap_free()Sebastian Huber
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 Huber
Update #2417.
2015-08-31rbheap: Drop direction from _RBTree_Iterate()Sebastian Huber
2014-08-05rbtree: Add and use RBTree_Compare_resultSebastian Huber
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2014-03-20tests/libtests: Use <rtems/test.h>Sebastian Huber
2014-01-09libtests: Add contents to rbheap and stackchk documentation filesCynthia Rempel
2013-11-21score/rbtree: Remove "unprotected" from APISebastian Huber
2013-07-23score: Create rbtree implementation headerSebastian Huber
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 Huber
2012-05-11libtmtests - Eliminate missing prototype warningsJoel Sherrill
2012-04-18rbheap: API changes and documentationSebastian Huber
2012-04-11rbheap: New filesSebastian Huber
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.