Ben Tyner | 8c2f8b2 | 2020-03-27 10:39:31 -0500 | [diff] [blame] | 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(); |