Minor changes

This commit is contained in:
Loïc Guégan 2024-02-02 13:08:16 +01:00
parent 10dc03b39c
commit 1e8c15ca87

View file

@ -19,6 +19,9 @@
unsigned char __stop = 0;
unsigned char __stop_zmq_thread = 0;
/// @brief Path of the break file (if found, publisher will stop publishing)
char __break_file[STATIC_LEN];
/**
* @brief Stop process properly on SIGINT
*
@ -33,6 +36,10 @@ void sighandler(int signo) {
void *publisher(void *zmq_publisher);
void askforbreak(){
}
typedef struct queue {
int size;
char issending;
@ -62,6 +69,12 @@ int main(int argc, char *argv[]) {
strcat(regpower, "/");
strcat(regpower, INA260_POWER_OUTPUT);
// __break_file
strcat(__break_file, "/publisher_");
strcat(__break_file, key);
strcat(__break_file, "_break");
printf("%s\n",__break_file);
//----- Sanity checks
signal(SIGINT, sighandler);
if (loginterval < MIN_INTERVAL) {
@ -175,4 +188,4 @@ void *publisher(void *zmq_publisher) {
queue_id = 0;
}
pthread_exit(EXIT_SUCCESS);
}
}