1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 13:47:52 +03:00
openwrt-xburst/package/network/utils/iperf/patches/001-set-report-next-time-in-single-thread-mode.patch
nbd b34df2727a iperf: move to trunk and add myself as maintainer
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33691 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-10-10 12:35:43 +00:00

15 lines
428 B
Diff

--- a/src/Reporter.c
+++ b/src/Reporter.c
@@ -308,6 +308,11 @@ ReportHeader* InitReport( thread_Setting
#else
// set start time
gettimeofday( &(reporthdr->report.startTime), NULL );
+
+ // set next time
+ reporthdr->report.nextTime = reporthdr->report.startTime;
+ TimeAdd( reporthdr->report.nextTime, reporthdr->report.intervalTime );
+
/*
* Process the report in this thread
*/