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
2bc5f2c00f
commit
8350d7e977
1 changed files with 3 additions and 2 deletions
|
@ -102,12 +102,13 @@ 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) {
|
||||||
interval = INTERVAL(loginterval);
|
// Wait for next queue to be available:
|
||||||
// Log current interval
|
|
||||||
queue_id = (queue_id + 1) >= MAX_QUEUES ? 0 : (queue_id + 1);
|
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
|
||||||
|
interval = INTERVAL(loginterval);
|
||||||
// Write msg header:
|
// Write msg header:
|
||||||
*queues[queue_id].msg = '\0';
|
*queues[queue_id].msg = '\0';
|
||||||
sprintf(queues[queue_id].msg, "%s\n%s\n%s\n%ld\n", ZMQ_TOKEN, key, client,
|
sprintf(queues[queue_id].msg, "%s\n%s\n%s\n%ld\n", ZMQ_TOKEN, key, client,
|
||||||
|
|
Loading…
Add table
Reference in a new issue