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