changed tsDLIterBD to tsDLIter

This commit is contained in:
Jeff Hill
2002-07-25 21:02:29 +00:00
parent 27d9ae81c6
commit e45a480dca
25 changed files with 131 additions and 143 deletions

View File

@@ -110,7 +110,7 @@ epicsShareFunc void fdManager::process (double delay)
minDelay = delay;
}
tsDLIterBD < fdReg > iter = this->regList.firstIter ();
tsDLIter < fdReg > iter = this->regList.firstIter ();
while ( iter.valid () ) {
FD_SET(iter->getFD(), &this->fdSets[iter->getType()]);
ioPending = 1;
@@ -165,7 +165,7 @@ epicsShareFunc void fdManager::process (double delay)
//
iter=this->regList.firstIter ();
while ( iter.valid () ) {
tsDLIterBD<fdReg> tmp = iter;
tsDLIter<fdReg> tmp = iter;
tmp++;
if (FD_ISSET(iter->getFD(), &this->fdSets[iter->getType()])) {
FD_CLR(iter->getFD(), &this->fdSets[iter->getType()]);