blob: 2be6b07b921475d6b7d31247ab295f39c25e42ee [file] [log] [blame]
Ben Tyneref320152020-01-09 10:31:23 -06001#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 */
21void attnHandler();