xref: /openbmc/openpower-hw-diags/attn/bp_handler.hpp (revision fe15649ef9bcc45513cec53cbd3f403ab2ddee8a)
1 #pragma once
2 
3 namespace attn
4 {
5 
6 /**
7  * @brief Breakpoint special attention handler
8  *
9  * Handler for special attention events due to a breakpoint condition.
10  *
11  * @return RC_NOT_HANDLED if error, else RC_SUCCESS
12  */
13 int bpHandler();
14 
15 } // namespace attn
16