From 96e447360fb0d301ee3770d2b5ee8108131fd954 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 28 Apr 2020 09:01:17 +0200 Subject: [PATCH] Added stats modulo property to general config --- core-buffer/include/buffer_config.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index c43e1e5..bb0e075 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -32,6 +32,9 @@ namespace core_buffer { // How many frames to buffer before flushing to file. const size_t WRITER_BUFFER_SIZE = 100; + + // Number of pulses between each statistics print out. + const size_t STATS_MODULO = 100; } #endif //BUFFERCONFIG_HPP