blob: 48f5cbf0f6cfe7fcb709f27b58ffb0137b34052c [file] [log] [blame]
Ben Tyner8c2f8b22020-03-27 10:39:31 -05001#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 */
8void* 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 */
18int 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 */
25bool listenerMqExists();