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;
|
||||
u32 outputMessageNumber = 0u;
|
||||
std::chrono::microseconds tReceive;
|
||||
std::chrono::microseconds tProcess;
|
||||
std::chrono::microseconds tSend;
|
||||
std::chrono::microseconds tTotal;
|
||||
std::chrono::microseconds tReceive(0);
|
||||
std::chrono::microseconds tProcess(0);
|
||||
std::chrono::microseconds tSend(0);
|
||||
std::chrono::microseconds tTotal(0);
|
||||
auto tLastReport = std::chrono::steady_clock::now();
|
||||
|
||||
while (true)
|
||||
|
|
Loading…
Reference in a new issue