summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpunsupported01 (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2020-02-25config: Remove CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber1-2/+0
The CONFIGURE_DISABLE_SMP_CONFIGURATION configuration option and rtems_configuration_is_smp_enabled() were added during the SMP support development cycle as a workaround to fix some testsuite failures in SMP configurations. All use cases were replaced with tests for specific conditions. The configuration option and test macro were undocumented. Close #3876.
2019-01-09rtems: Allow to set ISR level 0 in SMP configSebastian Huber1-1/+1
Update #3000.
2018-04-10testsuite/smptests: Merged nested Makefile.am files into one Makefile.amChris Johns1-19/+0
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-12-06smpunsupported01: Add missing error check for rtems_task_modeJoel Sherrill2-1/+13
Update test documentation to include more cases. Updates #3000.
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-02-14Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber1-1/+1
Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
2017-02-02Remove CONFIGURE_SMP_APPLICATIONSebastian Huber1-3/+1
Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
2016-11-18score: Restrict task interrupt level to 0 on SMPSebastian Huber1-1/+17
Update #2811.
2014-09-01tests: Add documentationSebastian Huber1-1/+8
2014-04-04Disable per task variables when SMP is enabledJoel Sherrill1-9/+1
Per task variables are inherently unsafe in SMP systems. This patch disables them from the build and adds warnings in the appropriate documentation and configuration sections.
2014-03-31score: Thread life cycle re-implementationSebastian Huber1-3/+0
The thread deletion is now supported on SMP. This change fixes the following PRs: PR1814: SMP race condition between stack free and dispatch PR2035: psxcancel reveals NULL pointer access in _Thread_queue_Extract() The POSIX cleanup handler are now called in the right context (should be called in the context of the terminating thread). http://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_09.html Add a user extension the reflects a thread termination event. This is used to reclaim the Newlib reentrancy structure (may use file operations), the POSIX cleanup handlers and the POSIX key destructors.
2014-03-31score: Use thread action for thread restartSebastian Huber1-24/+1
The thread restart is now supported on SMP. New test smptests/smpthreadlife01.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2014-03-17tests/smptests: Use <rtems/test.h>Sebastian Huber1-3/+6
2013-08-20smp: Disable restart of threads other than selfSebastian Huber1-0/+23
2013-07-22score: Error for non-preemptible tasks on SMPSebastian Huber1-1/+16
A common use case for disabled preemption was to ensure mutual exclusion on single-processor configurations. On SMP this does not work. To abandon non-preemptible tasks simplifies the scheduler.
2013-07-22rtems: Error for task variables on SMPSebastian Huber1-0/+9
Task variables are not supported on SMP.
2013-07-22rtems: Error for task delete on SMPSebastian Huber1-0/+5
Task deletion is currently not implemented on SMP configurations.
2013-07-22sapi: Add rtems_configuration_is_smp_enabled()Sebastian Huber4-0/+82
Add a configuration field which indicates if the SMP mode of operation is enabled. This can be used to disable features unsupported on SMP, e.g task variables.