summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rbheap01 (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.
* testsuites/libtests/[m-z]*: Change license to BSD-2Joel Sherrill2022-04-121-3/+22
| | | | Updates #3053.
* testsuites/libtests/[p-z]*: Change license to BSD-2Joel Sherrill2022-04-071-3/+22
| | | | Updates #3053.
* bsps/testsuites/: Scripted embedded brains header file clean upJoel Sherrill2022-03-101-6/+0
| | | | Updates #4625.
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* testsuite/libtests: Merged nested Makefile.am files into one Makefile.amChris Johns2018-04-101-19/+0
| | | | | | This change is part of the testsuite Makefile.am reorganization. Update #3382
* tests: Use simple console driverSebastian Huber2017-11-061-1/+1
| | | | | Update #3170. Update #3199.
* tests: Remove TEST_INITSebastian Huber2017-10-281-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.
* testsuite: Use printk for all test output where possible.Chris Johns2017-10-231-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.
* 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.