You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
428 B
14 lines
428 B
--- 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
|
|
*/
|
|
|