summaryrefslogtreecommitdiff
path: root/testsuites/tmtests/tmcontext01 (follow)
AgeCommit message (Collapse)Author
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-20tmtests/tmcontext01: Prevent GCC 7.1 optimizationsSebastian Huber
It is getting harder to prevent the compiler from optimizing away the recursive function calls.
2017-02-14Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber
Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
2017-02-02Remove CONFIGURE_SMP_APPLICATIONSebastian Huber
Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
2015-03-05tests: Fix warningsSebastian Huber
2014-09-11tmtests/tmcontext01: Improve cache dirty functionSebastian Huber
Increment by cache line size to allow more cycles per second.
2014-09-08tmtests/tmcontext01: Improve cache dirty functionSebastian Huber
2014-09-05tmtests/tmcontext01: Plot a legendSebastian Huber
2014-04-11rtems: Rename rtems_smp_get_processor_count()Sebastian Huber
Rename rtems_smp_get_processor_count() in rtems_get_processor_count(). Make rtems_get_processor_count() a function in uni-processor configurations to enable ABI compatibility with SMP configurations.
2014-03-25tmtests/tmcontext01: Use <rtems/test.h>Sebastian Huber
2014-03-25tmtests: convert to test.hbjorn larsson
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2014-03-14score: Add SMP lock profiling supportSebastian Huber
2014-03-11score: Add function to destroy SMP locksSebastian Huber
2014-03-11score: Add local context to SMP lock APISebastian Huber
Add a local context structure to the SMP lock API for acquire and release pairs. This context can be used to store the ISR level and profiling information. It may be later used to enable more sophisticated lock algorithms, e.g. MCS locks. There is only one lock that cannot be used with a local context. This is the per-CPU lock since here we would have to transfer the local context through a context switch which is very complicated.
2014-02-28tmtests/tmcontext01: New testSebastian Huber