summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rbheap01/init.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-04-07testsuites/libtests/[p-z]*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10bsps/testsuites/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
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 Johns1-1/+1
2014-03-20tests/libtests: Use <rtems/test.h>Sebastian Huber1-2/+6
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 Huber1-0/+571
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.