Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame^] | 1 | #pragma once |
| 2 | |
| 3 | /** |
| 4 | * @brief The main attention handler logic |
| 5 | * |
| 6 | * Check each processor for active attentions of type SBE Vital (vital), |
| 7 | * System Checkstop (checkstop) and Special Attention (special) and handle |
| 8 | * each as follows: |
| 9 | * |
| 10 | * checkstop: TBD |
| 11 | * vital: TBD |
| 12 | * special: Determine if the special attention is a Breakpoint (BP), |
| 13 | * Terminate Immediately (TI) or CoreCodeToSp (corecode). For each |
| 14 | * special attention type, do the following: |
| 15 | * |
| 16 | * BP: Notify Cronus |
| 17 | * TI: TBD |
| 18 | * Corecode: TBD |
| 19 | * Recoverable: TBD |
| 20 | */ |
| 21 | void attnHandler(); |