You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2002/11/17 03:05:29 UTC

cvs commit: httpd-docs-1.3/htdocs/manual/misc descriptors.html

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 @@
   
         <dd>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.</dd>
  +      2000.  Version 4.3.3 and 5.1 say
  +      <pre>
  +/*
  + * 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 <limits.h> */
  +#endif
  +</pre></dd>
   
         <dt><strong>SCO OpenServer</strong></dt>