fixed sun pro warnings

This commit is contained in:
Jeff Hill
2000-03-13 22:11:12 +00:00
parent 99777c8c38
commit fa7986c634
8 changed files with 31 additions and 39 deletions
+4 -4
View File
@@ -33,14 +33,14 @@ searchTimer::searchTimer (udpiiu &iiuIn, osiTimerQueue &queueIn) :
//
// searchTimer::reset ()
//
void searchTimer::reset (double period)
void searchTimer::reset (double periodIn)
{
LOCK (this->iiu.niiu.iiu.pcas);
this->retry = 0;
this->period = period;
this->period = periodIn;
UNLOCK (this->iiu.niiu.iiu.pcas);
if (this->timeRemaining()>period) {
if (this->timeRemaining()>this->period) {
this->reschedule (0.0);
}
}
@@ -338,7 +338,7 @@ double searchTimer::delay () const
return this->period;
}
void searchTimer::show (unsigned level) const
void searchTimer::show (unsigned /* level */) const
{
}