init duration timers
This commit is contained in:
parent
b741bf50da
commit
54ab64668d
1 changed files with 4 additions and 4 deletions
|
@ -425,10 +425,10 @@ void listfile_parser_nng(
|
||||||
|
|
||||||
nng_msg *inputMsg = nullptr;
|
nng_msg *inputMsg = nullptr;
|
||||||
u32 outputMessageNumber = 0u;
|
u32 outputMessageNumber = 0u;
|
||||||
std::chrono::microseconds tReceive;
|
std::chrono::microseconds tReceive(0);
|
||||||
std::chrono::microseconds tProcess;
|
std::chrono::microseconds tProcess(0);
|
||||||
std::chrono::microseconds tSend;
|
std::chrono::microseconds tSend(0);
|
||||||
std::chrono::microseconds tTotal;
|
std::chrono::microseconds tTotal(0);
|
||||||
auto tLastReport = std::chrono::steady_clock::now();
|
auto tLastReport = std::chrono::steady_clock::now();
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
|
|
Loading…
Reference in a new issue