transceiver: rename getting radio vector time to getTime()

Small name change to match setTime for a get/set pair.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2673 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
kurtis.heimerl
2011-11-26 03:18:43 +00:00
parent ce31733860
commit 0628613f4f
3 changed files with 22 additions and 22 deletions

View File

@@ -26,7 +26,7 @@ radioVector::radioVector(const signalVector& wVector, GSM::Time& wTime)
{
}
GSM::Time radioVector::time() const
GSM::Time radioVector::getTime() const
{
return mTime;
}
@@ -64,7 +64,7 @@ GSM::Time VectorQueue::nextTime() const
while (mQ.size()==0)
mWriteSignal.wait(mLock);
retVal = mQ.top()->time();
retVal = mQ.top()->getTime();
mLock.unlock();
return retVal;
@@ -78,7 +78,7 @@ radioVector* VectorQueue::getStaleBurst(const GSM::Time& targTime)
return NULL;
}
if (mQ.top()->time() < targTime) {
if (mQ.top()->getTime() < targTime) {
radioVector* retVal = mQ.top();
mQ.pop();
mLock.unlock();
@@ -97,7 +97,7 @@ radioVector* VectorQueue::getCurrentBurst(const GSM::Time& targTime)
return NULL;
}
if (mQ.top()->time() == targTime) {
if (mQ.top()->getTime() == targTime) {
radioVector* retVal = mQ.top();
mQ.pop();
mLock.unlock();