summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfatal29 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Remove fatal is internal indicatorSebastian Huber2016-12-091-1/+0
| | | | | | | | | The fatal is internal indicator is redundant since the fatal source and error code uniquely identify a fatal error. Keep the fatal user extension is internal parameter for backward compatibility and set it to false always. Update #2825.
* score: Add and use _Thread_Dispatch_direct()Sebastian Huber2016-11-184-0/+77
This function is useful for operations which synchronously block, e.g. self restart, self deletion, yield, sleep. It helps to detect if these operations are called in the wrong context. Since the thread dispatch necessary indicator is not used, this is more robust in some SMP situations. Update #2751.