summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-08 22:18:50 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-08 22:18:50 +0000
commit986bdc3a758f0e5033fd08e247af58d44dcb0d65 (patch)
tree03394aa8ab965a84f6827e4ab840861a029ed0d1 /ace/Select_Reactor.cpp
parent46aec2e166665eb1af90231035c95f553377970e (diff)
downloadATCD-986bdc3a758f0e5033fd08e247af58d44dcb0d65.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Select_Reactor.cpp')
-rw-r--r--ace/Select_Reactor.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/ace/Select_Reactor.cpp b/ace/Select_Reactor.cpp
index 80481ec560c..9df2d53c871 100644
--- a/ace/Select_Reactor.cpp
+++ b/ace/Select_Reactor.cpp
@@ -112,13 +112,11 @@ ACE_Select_Reactor_Handler_Repository::open (size_t size)
errno = ERANGE;
return -1;
}
-#if defined (RLIMIT_NOFILE) && !defined (ACE_LACKS_RLIMIT)
// Increase the number of handles if <size> is greater than the
// current limit.
if (size < (size_t) ACE::max_handles ())
return ACE::set_handle_limit (size);
else
-#endif /* defined (RLIMIT_NOFILE) && !defined (ACE_LACKS_RLIMIT) */
return 0;
}