mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
enable maxDescriptors on Illumos/Solaris (#19295)
This commit is contained in:
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user