summaryrefslogtreecommitdiffstats
path: root/spec/build/cpukit/optexceptionextensions.yml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Use enabled by for defaultsSebastian Huber2023-01-171-2/+3
| | | | | | | | | | | | | | Merge the "default" and "default-by-variant" attributes. Use an "enabled-by" expression to select the default value based on the enabled set. This makes it possible to select default values depending on other options. For example you could choose memory settings based on whether RTEMS_SMP is enabled or disabled. The change was tested by comparing the output of ./waf bspdefaults before and after the change.
* cpukit/microblaze: Add exception extensionsKinsey Moore2022-02-041-0/+1
| | | | | Add the functions necessary to support RTEMS_EXCEPTION_EXTENSIONS and mark this functionality as available on MicroBlaze.
* build: Fix build item formatSebastian Huber2022-01-111-1/+0
|
* cpukit/aarch64: Add exception extensions supportKinsey Moore2021-10-291-0/+1
| | | | | This adds the function implementations necessary to add exception extensions support to AArch64.
* cpukit: Add exception extensionsKinsey Moore2021-10-291-0/+18
This adds the set of functions necessary to allow more generic handling of machine exceptions. This initial patch offers the ability to manipulate a CPU_Exception_frame and resume execution using that exception information with or without thread dispatch. These functions are gated behind the RTEMS_EXCEPTION_EXTENSIONS configuration option.