Return-Path: Delivered-To: apmail-httpd-docs-archive@httpd.apache.org Received: (qmail 40135 invoked by uid 500); 17 Nov 2002 02:05:30 -0000 Mailing-List: contact docs-help@httpd.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: docs@httpd.apache.org Delivered-To: mailing list docs@httpd.apache.org Received: (qmail 40120 invoked by uid 500); 17 Nov 2002 02:05:30 -0000 Delivered-To: apmail-apache-docs@apache.org Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 17 Nov 2002 02:05:29 -0000 Message-ID: <20021117020529.29078.qmail@icarus.apache.org> From: slive@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/misc descriptors.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N slive 2002/11/16 18:05:29 Modified: htdocs/manual/misc descriptors.html Log: A little information about FD_SETSIZE in AIX. (I hope I'm not violating any copyright laws here.... Fair use?) PR: 12695 Revision Changes Path 1.13 +12 -1 httpd-docs-1.3/htdocs/manual/misc/descriptors.html Index: descriptors.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/misc/descriptors.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -b -u -r1.12 -r1.13 --- descriptors.html 8 Oct 2001 01:26:54 -0000 1.12 +++ descriptors.html 17 Nov 2002 02:05:29 -0000 1.13 @@ -121,7 +121,18 @@
AIX version 3.2?? appears to have a hard limit of 128 descriptors. End of story. Version 4.1.5 has a hard limit of - 2000.
+ 2000. Version 4.3.3 and 5.1 say +
  +/*
  + * Select uses bit masks of file descriptors.
  + * These macros manipulate such bit fields.
  + * FD_SETSIZE may be defined by the user to the maximum valued file
  + * descriptor to be selected; the default here should be == OPEN_MAX
  + */
  +#ifndef FD_SETSIZE
  +#define FD_SETSIZE     32767    /* must be == OPEN_MAX in  */
  +#endif
  +
SCO OpenServer
--------------------------------------------------------------------- To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org For additional commands, e-mail: docs-help@httpd.apache.org