summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/ts-fatal-start-on-not-online-processor.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* validation: Avoid double fatal errorSebastian Huber2022-04-121-0/+2
| | | | | | | In the SMP_FATAL_MULTITASKING_START_ON_NOT_ONLINE_PROCESSOR test case, the boot processor ends up in the idle body. Do not issue a fatal error here and instead enter the idle loop. The secondary processor will terminate the system.
* smp: Add fatal errorSebastian Huber2022-03-241-0/+82
Add SMP-specifc SMP_FATAL_MULTITASKING_START_ON_NOT_ONLINE_PROCESSOR fatal error. This fatal error helps to diagnose a broken SMP startup sequence. Without this error a context switch using the NULL pointer for the thread control block happens which may be difficult to debug.