summaryrefslogtreecommitdiff
path: root/testsuites/smptests/smpschededf02 (follow)
AgeCommit message (Collapse)Author
2020-02-14smpschededf02: Improve readabilitySebastian Huber
2019-04-09rtems: Add rtems_scheduler_get_processor_maximum()Sebastian Huber
Add rtems_scheduler_get_processor_maximum() as a replacement for rtems_get_processor_count(). The rtems_get_processor_count() is a bit orphaned. Adopt it by the Scheduler Manager. The count is also misleading, since the processor set may have gaps and the actual count of online processors may be less than the value returned by rtems_get_processor_count(). Update #3732.
2018-09-03score: Fix EDF SMP schedulerSebastian Huber
Fix a special case: block a one-to-one scheduled thread while having a non-empty affine ready queue on the same processor.
2018-04-27smptests/smpschededf02: Add test caseSebastian Huber
2018-04-10testsuite/smptests: 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-07-10score: Add simple affinity support to EDF SMPSebastian Huber
Update #3059.