* setRlimit(): move OS-specific code to separate files

This commit is contained in:
Simon Zolin
2019-04-16 18:36:10 +03:00
parent 00ba63341b
commit 1611057852
3 changed files with 26 additions and 12 deletions

5
os_windows.go Normal file
View File

@@ -0,0 +1,5 @@
package main
// Set user-specified limit of how many fd's we can use
func setRlimit(val uint) {
}