mirror of
https://github.com/lubosz/overte.git
synced 2025-04-09 08:22:30 +02:00
forgot more lines
This commit is contained in:
parent
d43c39fd57
commit
53d6cdd67c
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,8 @@ void runSend(const char* addressOption, int port, int gap, int size, int report)
|
|||
timeGaps.update(gapDifferece);
|
||||
timeGapsPerReport.update(gapDifferece);
|
||||
stDev.addValue(gapDifferece);
|
||||
stDev30s.addValue(gapDifferece);
|
||||
stDevReportInterval.addValue(gapDifferece);
|
||||
last = now;
|
||||
|
||||
if (now - lastReport >= (report * MSEC_TO_USEC)) {
|
||||
|
@ -208,6 +210,8 @@ void runReceive(const char* addressOption, int port, int gap, int size, int repo
|
|||
timeGaps.update(gapDifferece);
|
||||
timeGapsPerReport.update(gapDifferece);
|
||||
stDev.addValue(gapDifferece);
|
||||
stDev30s.addValue(gapDifferece);
|
||||
stDevReportInterval.addValue(gapDifferece);
|
||||
last = now;
|
||||
|
||||
if (now - lastReport >= (report * MSEC_TO_USEC)) {
|
||||
|
|
Loading…
Reference in a new issue