getdtablesize.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* getdtablesize() function for platforms that don't have it.
  2. Copyright (C) 2008-2013 Free Software Foundation, Inc.
  3. Written by Bruno Haible <bruno@clisp.org>, 2008.
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #include <config.h>
  15. /* Specification. */
  16. #include <unistd.h>
  17. #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
  18. #include <stdio.h>
  19. #include "msvc-inval.h"
  20. #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
  21. static int
  22. _setmaxstdio_nothrow (int newmax)
  23. {
  24. int result;
  25. TRY_MSVC_INVAL
  26. {
  27. result = _setmaxstdio (newmax);
  28. }
  29. CATCH_MSVC_INVAL
  30. {
  31. result = -1;
  32. }
  33. DONE_MSVC_INVAL;
  34. return result;
  35. }
  36. # define _setmaxstdio _setmaxstdio_nothrow
  37. #endif
  38. /* Cache for the previous getdtablesize () result. */
  39. static int dtablesize;
  40. int
  41. getdtablesize (void)
  42. {
  43. if (dtablesize == 0)
  44. {
  45. /* We are looking for the number N such that the valid file descriptors
  46. are 0..N-1. It can be obtained through a loop as follows:
  47. {
  48. int fd;
  49. for (fd = 3; fd < 65536; fd++)
  50. if (dup2 (0, fd) == -1)
  51. break;
  52. return fd;
  53. }
  54. On Windows XP, the result is 2048.
  55. The drawback of this loop is that it allocates memory for a libc
  56. internal array that is never freed.
  57. The number N can also be obtained as the upper bound for
  58. _getmaxstdio (). _getmaxstdio () returns the maximum number of open
  59. FILE objects. The sanity check in _setmaxstdio reveals the maximum
  60. number of file descriptors. This too allocates memory, but it is
  61. freed when we call _setmaxstdio with the original value. */
  62. #if !defined(_WIN32) && !defined(_WIN64)
  63. int orig_max_stdio = _getmaxstdio ();
  64. unsigned int bound;
  65. for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2)
  66. ;
  67. _setmaxstdio (orig_max_stdio);
  68. dtablesize = bound;
  69. #else
  70. dtablesize = _getmaxstdio();
  71. #endif
  72. }
  73. return dtablesize;
  74. }
  75. #endif