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
d2de7aa0f1
commit
76479f3e80
1 changed files with 3 additions and 4 deletions
|
@ -102,11 +102,8 @@ int main(int argc, char *argv[]) {
|
||||||
//----- Start logging
|
//----- Start logging
|
||||||
printf("Logger started [client=%s,interval=%ds]\n", client, loginterval);
|
printf("Logger started [client=%s,interval=%ds]\n", client, loginterval);
|
||||||
while (!__stop) {
|
while (!__stop) {
|
||||||
// Wait for next queue to be available:
|
|
||||||
queue_id = (queue_id + 1) >= MAX_QUEUES ? 0 : (queue_id + 1);
|
|
||||||
// Busy wait:
|
// Busy wait:
|
||||||
while (queues[queue_id].issending) {
|
while (queues[queue_id].issending) {}
|
||||||
};
|
|
||||||
// Get current interval
|
// Get current interval
|
||||||
interval = INTERVAL(loginterval);
|
interval = INTERVAL(loginterval);
|
||||||
// Write msg header:
|
// Write msg header:
|
||||||
|
@ -141,6 +138,8 @@ int main(int argc, char *argv[]) {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
queues[queue_id].issending = 1;
|
queues[queue_id].issending = 1;
|
||||||
|
// Wait for next queue to be available:
|
||||||
|
queue_id = (queue_id + 1) >= MAX_QUEUES ? 0 : (queue_id + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
//----- Cleaning
|
//----- Cleaning
|
||||||
|
|
Loading…
Add table
Reference in a new issue