| 51 | } |
| 52 | |
| 53 | NORETURN void AbortImpl() { |
| 54 | /* Perform any necessary (typically none) debugging. */ |
| 55 | if constexpr (SaveSystemStateForDebug) { |
| 56 | SaveSystemStateForDebugAbort(); |
| 57 | } |
| 58 | |
| 59 | secmon::SetError(pkg1::ErrorInfo_UnknownAbort); |
| 60 | secmon::ErrorReboot(); |
| 61 | } |
| 62 | |
| 63 | #include <exosphere/diag/diag_detailed_assertion_impl.inc> |
| 64 |
nothing calls this directly
no test coverage detected