mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
Minor changes
This commit is contained in:
parent
f4a3b66017
commit
6d3e13df8e
1 changed files with 5 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
/// @brief Set to non-zero to stop the processes
|
/// @brief Set to non-zero to stop the processes
|
||||||
unsigned char __stop = 0;
|
unsigned char __stop = 0;
|
||||||
|
unsigned char __stop_zmq_thread = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Stop process properly on SIGINT
|
* @brief Stop process properly on SIGINT
|
||||||
|
@ -144,6 +145,7 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
//----- Cleaning
|
//----- Cleaning
|
||||||
close(regfd);
|
close(regfd);
|
||||||
|
__stop_zmq_thread=1; // Ignite clean stop
|
||||||
pthread_join(zmq_thread, NULL);
|
pthread_join(zmq_thread, NULL);
|
||||||
zmq_close(zmq_publisher);
|
zmq_close(zmq_publisher);
|
||||||
zmq_ctx_destroy(zmq_context);
|
zmq_ctx_destroy(zmq_context);
|
||||||
|
@ -153,7 +155,9 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
void *publisher(void *zmq_publisher) {
|
void *publisher(void *zmq_publisher) {
|
||||||
int queue_id = 0;
|
int queue_id = 0;
|
||||||
while (!__stop) {
|
while (1) {
|
||||||
|
if(__stop_zmq_thread && !queues[queue_id].issending)
|
||||||
|
break;
|
||||||
if (queues[queue_id].issending) {
|
if (queues[queue_id].issending) {
|
||||||
long long startat=TIMESTAMP();
|
long long startat=TIMESTAMP();
|
||||||
printf("Publishing...");
|
printf("Publishing...");
|
||||||
|
|
Loading…
Add table
Reference in a new issue