From 1899bff866f5755f15b6a71850ea6c609ef50299 Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Mon, 21 Sep 1998 15:22:03 +0000 Subject: In handle_error, check handles on all errors for Win32 in addition to MVS. --- ace/Select_Reactor_T.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ace/Select_Reactor_T.cpp b/ace/Select_Reactor_T.cpp index 16489faed29..4ddf2ebeee7 100644 --- a/ace/Select_Reactor_T.cpp +++ b/ace/Select_Reactor_T.cpp @@ -655,9 +655,9 @@ ACE_Select_Reactor_T::handle_error (void) ACE_TRACE ("ACE_Select_Reactor_T::handle_error"); if (errno == EINTR) return this->restart_; -#if defined (__MVS__) - // On MVS Open Edition, there can be a number of failure codes on a bad - // socket, so check_handles on anything other than EINTR. +#if defined (__MVS__) || defined (ACE_WIN32) + // On MVS Open Edition and Win32, there can be a number of failure codes + // on a bad socket, so check_handles on anything other than EINTR. else return this->check_handles (); #else -- cgit v1.2.1