enable maxDescriptors on Illumos/Solaris (#19295)

This commit is contained in:
BarrOff
2021-12-30 20:10:36 +00:00
committed by GitHub
parent a9223d4cdd
commit 23d64be860
2 changed files with 4 additions and 4 deletions

View File

@@ -1974,11 +1974,11 @@ when defined(posix):
import posix
when defined(linux) or defined(windows) or defined(macosx) or defined(bsd) or
defined(zephyr) or defined(freertos):
defined(solaris) or defined(zephyr) or defined(freertos):
proc maxDescriptors*(): int {.raises: OSError.} =
## Returns the maximum number of active file descriptors for the current
## process. This involves a system call. For now `maxDescriptors` is
## supported on the following OSes: Windows, Linux, OSX, BSD.
## supported on the following OSes: Windows, Linux, OSX, BSD, Solaris.
when defined(windows):
result = 16_700_000
elif defined(zephyr) or defined(freertos):

View File

@@ -324,11 +324,11 @@ else:
doAssert(timeout >= -1, "Cannot select with a negative value, got: " & $timeout)
when defined(linux) or defined(windows) or defined(macosx) or defined(bsd) or
defined(zephyr) or defined(freertos):
defined(solaris) or defined(zephyr) or defined(freertos):
template maxDescriptors*(): int =
## Returns the maximum number of active file descriptors for the current
## process. This involves a system call. For now `maxDescriptors` is
## supported on the following OSes: Windows, Linux, OSX, BSD.
## supported on the following OSes: Windows, Linux, OSX, BSD, Solaris.
when defined(windows):
16_700_000
elif defined(zephyr) or defined(freertos):