Increase file descriptor limit at startup.

This commit is contained in:
Juliusz Chroboczek
2021-07-29 14:26:41 +02:00
parent 82b10b2c10
commit a78fb6d747
5 changed files with 62 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
// +build windows plan9
package limit
func Nofile(desired uint64) (uint64, error) {
return desired, nil
}