mirror of
				https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
				synced 2025-11-03 21:53:18 +00:00 
			
		
		
		
	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:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user