mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-05 11:26: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
|
||||
printf("Logger started [client=%s,interval=%ds]\n", client, loginterval);
|
||||
while (!__stop) {
|
||||
interval = INTERVAL(loginterval);
|
||||
// Log current interval
|
||||
// Wait for next queue to be available:
|
||||
queue_id = (queue_id + 1) >= MAX_QUEUES ? 0 : (queue_id + 1);
|
||||
// Busy wait:
|
||||
while (queues[queue_id].issending) {
|
||||
};
|
||||
// Get current interval
|
||||
interval = INTERVAL(loginterval);
|
||||
// Write msg header:
|
||||
*queues[queue_id].msg = '\0';
|
||||
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