summaryrefslogtreecommitdiff
path: root/ace/Event_Handler.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-05 19:34:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-05 19:34:02 +0000
commit01b6248a5b02533c3f5bcd90d1d09d310ebdca2d (patch)
tree8d34db0f48e5862388b9c00ab58c6ccffe48f01c /ace/Event_Handler.cpp
parentcc34f4b1057073ae3398ecf74033786e5d164a8b (diff)
downloadATCD-fix_bug132_fin.tar.gz
This commit was manufactured by cvs2svn to create tagfix_bug132_fin
'fix_bug132_fin'.
Diffstat (limited to 'ace/Event_Handler.cpp')
-rw-r--r--ace/Event_Handler.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/ace/Event_Handler.cpp b/ace/Event_Handler.cpp
index 50d4f8c4596..ebbd72c43aa 100644
--- a/ace/Event_Handler.cpp
+++ b/ace/Event_Handler.cpp
@@ -3,7 +3,6 @@
#include "ace/Event_Handler.h"
#include "ace/Message_Block.h"
-#include "ace/OS_Errno.h"
#include "ace/Reactor.h"
#include "ace/Thread_Manager.h"
@@ -28,10 +27,7 @@ ACE_Event_Handler::~ACE_Event_Handler (void)
{
// ACE_TRACE ("ACE_Event_Handler::~ACE_Event_Handler");
if (this->reactor_ != 0)
- {
- ACE_Errno_Guard guard (errno); // purge may get ENOTSUP
- this->reactor_->purge_pending_notifications (this);
- }
+ this->reactor_->purge_pending_notifications (this);
}
// Gets the file descriptor associated with this I/O device.