xref: /openbmc/openpower-hw-diags/attn/vital_handler.hpp (revision bcf65a8b95ae1e2b9c9ea53fe749ceba625732ff)
1 #pragma once
2 
3 namespace attn
4 {
5 
6 /**
7  * @brief Handle SBE vital attention
8  *
9  * @param i_attention Attention object
10  * @return 0 indicates that the vital attention was successfully handled
11  *         1 indicates that the vital attention was NOT successfully handled
12  */
13 int handleVital(Attention* i_attention);
14 
15 } // namespace attn
16