1 #pragma once 2 3 /** 4 * @brief Start a thread to listen for attention handler messages 5 * 6 * @param i_params command line arguments passed to main 7 */ 8 void* threadListener(void* i_params); 9 10 /** 11 * @brief Send command line to a thread 12 * 13 * @param i_argc command line arguments count 14 * @param i_argv command line arguments 15 * 16 * @return number of cmd line arguments sent 17 */ 18 int sendCmdLine(int i_argc, char** i_argv); 19 20 /** 21 * @brief See if the listener thread message queue exists 22 * 23 * @return true if message queue exists, else false 24 */ 25 bool listenerMqExists(); 26