summaryrefslogtreecommitdiff
path: root/ace/Event_Handler.cpp
diff options
context:
space:
mode:
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.