Renamed UE_MEASUREMENTS_DELAY to UE_MEASUREMENT_REPORT_DELAY in LteUeRrc

This commit is contained in:
Budiarto Herman
2013-10-17 16:45:42 +03:00
parent 4a465e8a9b
commit e57ef0d520
3 changed files with 4 additions and 4 deletions

View File

@@ -2426,7 +2426,7 @@ LteUeRrc::VarMeasReportListAdd (uint8_t measId, ConcernedCells_t enteringCells)
NS_ASSERT (!measReportIt->second.cellsTriggeredList.empty ());
measReportIt->second.numberOfReportsSent = 0;
measReportIt->second.periodicReportTimer
= Simulator::Schedule (UE_MEASUREMENTS_DELAY,
= Simulator::Schedule (UE_MEASUREMENT_REPORT_DELAY,
&LteUeRrc::SendMeasurementReport,
this, measId);
@@ -2481,7 +2481,7 @@ LteUeRrc::VarMeasReportListErase (uint8_t measId, ConcernedCells_t leavingCells,
if (reportOnLeave)
{
// runs immediately without UE_MEASUREMENTS_DELAY
// runs immediately without UE_MEASUREMENT_REPORT_DELAY
SendMeasurementReport (measId);
}

View File

@@ -53,7 +53,7 @@ namespace ns3 {
* - time-to-trigger check is always performed before the reporting, so there
* would still be chance for it to cancel the reporting if necessary.
*/
static const Time UE_MEASUREMENTS_DELAY = MicroSeconds (1);
static const Time UE_MEASUREMENT_REPORT_DELAY = MicroSeconds (1);
class LteRlc;

View File

@@ -311,7 +311,7 @@ operator<< (std::vector<Time>& v, const uint64_t& ms)
* Prior attempt to use seconds as unit of choice resulted in precision lost.
* Therefore milliseconds are used now instead.
*/
v.push_back (MilliSeconds (ms) + UE_MEASUREMENTS_DELAY);
v.push_back (MilliSeconds (ms) + UE_MEASUREMENT_REPORT_DELAY);
return v;
}