revert to using virtual destroy() to destroy timers

This commit is contained in:
Jeff Hill
2001-07-12 17:53:51 +00:00
parent b061bb6eb9
commit c61e68b4e3
22 changed files with 37 additions and 63 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ exAsyncWriteIO::~exAsyncWriteIO()
{
this->pv.removeIO();
if ( this->pv.getCAS() ) {
this->pv.getCAS()->destroyTimer ( this->timer );
this->timer.destroy ();
}
}
@@ -102,7 +102,7 @@ exAsyncReadIO::~exAsyncReadIO()
{
this->pv.removeIO ();
if ( this->pv.getCAS() ) {
this->pv.getCAS()->destroyTimer ( this->timer );
this->timer.destroy ();
}
}