1 #pragma once
2 
3 namespace attn
4 {
5 
6 /**
7  * @brief Load the attention handler as a gpio monitor
8  *
9  * Request the attention gpio for monitoring and attach the attention handler
10  * as the gpio event handler.
11  *
12  * @param i_breakpoints     enables breakpoint special attn handling
13  *
14  * @return 0 == success
15  */
16 int attnDaemon(bool i_breakpoints);
17 
18 } // namespace attn
19